mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-16 13:20:33 +00:00
11 lines
376 B
TypeScript
11 lines
376 B
TypeScript
import { ConfigBase } from 'napcat-common/src/config-base';
|
|
import type { NapCatCore } from 'napcat-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);
|
|
}
|
|
}
|