mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-06 07:29:38 +00:00
12 lines
382 B
TypeScript
12 lines
382 B
TypeScript
import { ConfigBase } from '@/common/config-base';
|
|
import napCatDefaultConfig from '@/core/external/napcat.json';
|
|
import { NapCatCore } from '@/core';
|
|
|
|
export type NapCatConfig = typeof napCatDefaultConfig;
|
|
|
|
export class NapCatConfigLoader extends ConfigBase<NapCatConfig> {
|
|
constructor(core: NapCatCore, configPath: string) {
|
|
super('napcat', core, configPath);
|
|
}
|
|
}
|