13 lines
181 B
Go
13 lines
181 B
Go
package models
|
|
|
|
type UserInfo struct {
|
|
Username string
|
|
IsAdmin bool
|
|
}
|
|
|
|
type ServerInfo struct {
|
|
RegistrationEnabled bool
|
|
SearchEnabled bool
|
|
Version string
|
|
}
|