2021-09-02 23:37:28 +01:00
|
|
|
namespace isnd
|
|
|
|
|
{
|
|
|
|
|
public static class ApiConfig
|
|
|
|
|
{
|
|
|
|
|
public const string BaseApiPath = "/";
|
|
|
|
|
public const string Publish = "put";
|
2021-09-04 13:41:00 +01:00
|
|
|
public const string Base = "index.json";
|
2021-09-02 23:37:28 +01:00
|
|
|
public const string Catalog = "catalog";
|
|
|
|
|
public const string Get = "get";
|
|
|
|
|
public const string Search = "search";
|
|
|
|
|
public const string AutoComplete = "autocomplete";
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|