1234567891011121314151617181920 |
- package consts
- import (
- "context"
- "github.com/gogf/gf/v2/errors/gerror"
- "github.com/gogf/gf/v2/frame/g"
- )
- var (
- ServiceAddress = g.Cfg().MustGet(context.Background(), "tripartite.service").String()
- )
- var (
- LoginOutErr = gerror.New("请重新获取授权")
- AuthTimeOut = gerror.New("验证超时")
- )
- const (
- DateFormat_Full = "2006-01-02 15:04:05"
- )
|