mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-11 13:16:50 +00:00
11 lines
120 B
Go
11 lines
120 B
Go
package config
|
|
|
|
type Host struct {
|
|
CustomerSeed int
|
|
}
|
|
|
|
func NewHost() *Host {
|
|
return &Host{
|
|
CustomerSeed: 286,
|
|
}
|
|
}
|