14 lines
229 B
Go
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"`
|
|
}
|