PowerToys/Wox.Core/APIServer.cs

10 lines
292 B
C#
Raw Normal View History

2015-10-31 07:17:34 +08:00
namespace Wox.Core
2015-01-11 21:52:30 +08:00
{
public static class APIServer
{
private static string BaseAPIURL = "http://api.getwox.com";
public static string ErrorReportURL = BaseAPIURL + "/error/";
public static string LastestReleaseURL = BaseAPIURL + "/release/latest/";
}
}