mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 23:19:37 +00:00
11 lines
369 B
TypeScript
11 lines
369 B
TypeScript
import { ConfigBase } from '@/common/config-base';
|
|
import type { NapCatCore } from '@/core';
|
|
import { OneBotConfig } from './config';
|
|
import { AnySchema } from 'ajv';
|
|
|
|
export class OB11ConfigLoader extends ConfigBase<OneBotConfig> {
|
|
constructor(core: NapCatCore, configPath: string, schema: AnySchema) {
|
|
super('onebot11', core, configPath, schema);
|
|
}
|
|
}
|