mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
import { ConfigBase } from '@/common/config-base';
|
|
import ob11DefaultConfig from '@/onebot/external/onebot11.json';
|
|
import { NapCatCore } from '@/core';
|
|
|
|
export type OB11Config = typeof ob11DefaultConfig;
|
|
|
|
export class OB11ConfigLoader extends ConfigBase<OB11Config> {
|
|
constructor(core: NapCatCore, configPath: string) {
|
|
super('onebot11', core, configPath);
|
|
}
|
|
}
|