mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-06 07:29:38 +00:00
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
import { ConfigBase } from '@/common/utils/ConfigBase';
|
|
import ob11DefaultConfig from '@/onebot/external/onebot11.json';
|
|
import { NapCatCore } from '@/core';
|
|
|
|
export type OB11Config = typeof ob11DefaultConfig;
|
|
|
|
export class OB11ConfigLoader extends ConfigBase<OB11Config> {
|
|
constructor(coreContext: NapCatCore, configPath: string) {
|
|
super('onebot11', coreContext, configPath);
|
|
}
|
|
}
|