9 lines
283 B
Go
9 lines
283 B
Go
package noauthprobe
|
|
|
|
import "git.loafle.net/overflow/overflow_commons_go/util"
|
|
|
|
type NoAuthProbeConfig struct {
|
|
TempKey *string `json:"tempKey,omitempty" yaml:"tempKey" toml:"tempKey"`
|
|
DenyDate *util.Timestamp `json:"denyDate,omitempty" yaml:"denyDate" toml:"denyDate"`
|
|
}
|