1package types
 2
 3import "time"
 4
 5// Config is the Soft Serve application configuration.
 6type Config struct {
 7	ID           int
 8	Name         string
 9	Host         string
10	Port         int
11	AnonAccess   string
12	AllowKeyless bool
13	CreatedAt    *time.Time
14	UpdatedAt    *time.Time
15}