mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
16 lines
363 B
TypeScript
16 lines
363 B
TypeScript
import { ConfigBase } from "@/common/utils/ConfigBase";
|
|
import { LogLevel } from "@/common/utils/log";
|
|
|
|
export interface NapCatConfig {
|
|
fileLog: boolean,
|
|
consoleLog: boolean,
|
|
fileLogLevel: LogLevel,
|
|
consoleLogLevel: LogLevel,
|
|
}
|
|
|
|
export class NapCatConfig extends ConfigBase<NapCatConfig> {
|
|
getConfigName() {
|
|
return 'onebot11';
|
|
}
|
|
|
|
} |