Make server config properties optional
This commit is contained in:
parent
c3c65493b7
commit
838f893938
3 changed files with 5 additions and 5 deletions
|
|
@ -1,9 +1,9 @@
|
|||
module emgauwa.common
|
||||
|
||||
class ServerConfig {
|
||||
host: String
|
||||
port: UInt16
|
||||
token: String
|
||||
host: String?
|
||||
port: UInt16?
|
||||
token: String?
|
||||
}
|
||||
|
||||
/// Set to a user and a group to drop privileges to after binding to the port
|
||||
|
|
|
|||
Loading…
Reference in a new issue