14 lines
397 B
C#
14 lines
397 B
C#
namespace SRDebugger.Internal
|
|
{
|
|
public static class SRDebugApi
|
|
{
|
|
public const string PrivacyPolicyUrl = "https://www.stompyrobot.uk/tools/srdebugger/privacy-policy";
|
|
|
|
public const string Protocol = "https://";
|
|
|
|
public const string EndPoint = Protocol + "srdebugger.stompyrobot.uk";
|
|
|
|
public const string BugReportEndPoint = EndPoint + "/report/submit";
|
|
}
|
|
}
|