Files
aigrammar/comm.go
2024-08-17 04:29:48 +00:00

21 lines
414 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
// 定义公共变量名
const (
// 从jwt中解析出来的字段放到 context 中
KEY_DEVICEID = "DeviceID"
KEY_GID = "GID"
KEY_HEADER_TIMEZONE = "timezone"
KEY_HEADER_SECONDSFROMGMT = "secondsfromgmt"
KEY_LOCAL_TIMEZONE = "Asia/Shanghai"
// 定义每日免费次数
DAILY_FREE_COUNT = 3
// 定义购买的应用商店
APPSTORE = "appstore"
PLAYSTORE = "playstore"
)