class ServerConfig {
	host: String
	port: UInt16
}

/// Set to a user and a group to drop privileges to after binding to the port
class PermissionsConfig {
	user: String
	group: String
}

class LoggingConfig {
	level: String
	file: String
}