golib/gconfig/auth.go
2023-06-15 21:22:51 +08:00

14 lines
229 B
Go

//
// auth.go
// Copyright (C) 2022 tiglog <me@tiglog.com>
//
// Distributed under terms of the MIT license.
//
package gconfig
type AuthConfig struct {
TokenTtl int `yaml:"token_ttl"`
RefreshTtl int `yaml:"refresh_ttl"`
}