15 lines
208 B
Go
15 lines
208 B
Go
package config
|
|
|
|
import "github.com/zeromicro/go-zero/zrpc"
|
|
|
|
type JwtAuth struct {
|
|
AccessSecret string
|
|
AccessExpire int64
|
|
}
|
|
|
|
type Config struct {
|
|
zrpc.RpcServerConf
|
|
DataSource string
|
|
JwtAuth JwtAuth
|
|
}
|