mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-19 13:10:16 +08:00
12 lines
376 B
TypeScript
12 lines
376 B
TypeScript
import { ConfigBase } from '@/common/config-base';
|
|
import type { NapCatCore } from '@/core';
|
|
import { OneBotConfig } from './config';
|
|
import { z } from 'zod';
|
|
|
|
|
|
export class OB11ConfigLoader extends ConfigBase<OneBotConfig> {
|
|
constructor(core: NapCatCore, configPath: string, schema: z.ZodType<OneBotConfig>) {
|
|
super('onebot11', core, configPath, schema);
|
|
}
|
|
}
|