rentease/config/host.go
2024-02-22 22:08:46 +01:00

11 lines
120 B
Go

package config
type Host struct {
CustomerSeed int
}
func NewHost() *Host {
return &Host{
CustomerSeed: 286,
}
}