You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
375 B
C#

namespace TradeManageNew.APIClients.ShopifyApi
{
public class ShopifyAPIClientMisc
{
/// <summary>
/// 沙箱环境地址
/// </summary>
public const string SANDBOX_URL = "http://192.168.1.54:3000";
/// <summary>
/// 生产环境地址
/// </summary>
public const string PRODUCTION_URL = "";
}
}