mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
export interface Config {
|
|
httpPort: number
|
|
httpHosts: string[]
|
|
wsPort: number
|
|
wsHosts: string[]
|
|
enableHttp?: boolean
|
|
enableHttpPost?: boolean
|
|
enableWs?: boolean
|
|
enableWsReverse?: boolean
|
|
enableBase64?: boolean
|
|
debug?: boolean
|
|
reportSelfMessage?: boolean
|
|
log?: boolean
|
|
} |