Make keys optional
This commit is contained in:
parent
f09bfe9db3
commit
c3c65493b7
4 changed files with 10 additions and 10 deletions
8
core.pkl
8
core.pkl
|
|
@ -2,13 +2,13 @@ module emgauwa.core
|
|||
|
||||
import "./common.pkl"
|
||||
|
||||
server: common.ServerConfig
|
||||
server: common.ServerConfig?
|
||||
|
||||
database: String
|
||||
|
||||
permissions: common.PermissionsConfig
|
||||
permissions: common.PermissionsConfig?
|
||||
|
||||
logging: common.LoggingConfig
|
||||
logging: common.LoggingConfig?
|
||||
|
||||
/// Leave empty to allow all origins (will always respond with Origin and not "*")
|
||||
origins: Listing<String>
|
||||
origins: Listing<String>?
|
||||
|
|
|
|||
Loading…
Reference in a new issue