SRDebugApi.cs 307 B

12345678910111213
  1. using System;
  2. namespace SRDebugger.Internal
  3. {
  4. public static class SRDebugApi
  5. {
  6. public const string Protocol = "http://";
  7. public const string EndPoint = "http://srdebugger.stompyrobot.uk";
  8. public const string BugReportEndPoint = "http://srdebugger.stompyrobot.uk/report/submit";
  9. }
  10. }