15 lines
403 B
Go
15 lines
403 B
Go
/*
|
|
* Copyright 2026 Oleg Borodin <onborodin@gmail.com>
|
|
*/
|
|
package descr
|
|
|
|
type Server struct {
|
|
SchemeCreated bool `yaml:"schemeCreated"`
|
|
AnonymousCreated bool `yaml:"anonymousCreated"`
|
|
InituserCreated bool `yaml:"inituserCreated"`
|
|
|
|
SchemeCreatedAt string `yaml:"schemeCreatedAt"`
|
|
AnonymousCreatedAt string `yaml:"anonymousCreatedAt"`
|
|
InituserCreatedAt string `yaml:"inituserCreatedAt"`
|
|
}
|