// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.ComponentModel;
using Tango.Scripting.Editors.Document;
using Tango.Scripting.Editors.Editing;
using Tango.Scripting.Editors.Rendering;
namespace Tango.Scripting.Editors
{
///
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Settings;
using Tango.Web;
using Tango.Web.Security;
namespace Tango.MachineStudio.Common.Web
{
public class MachineStudioWebClient : MachineStudioWebClientBase
{
public MachineStudioWebClient(DeploymentSlot environment) : base(environment)
{
}
public MachineStudioWebClient(DeploymentSlot environment, String token) : base(environment, token)
{
}
public MachineStudioWebClient(String token) : this(SettingsManager.Default.GetOrCreate<MachineStudioSettings>().DeploymentSlot, token)
{
}
public MachineStudioWebClient(string address, string token) : base(address, token)
{
}
public MachineStudioWebClient() : this(null)
{
}
}
}