add content db type

This commit is contained in:
liuyi 2025-06-01 09:39:59 +08:00
parent 87aba1d0eb
commit 37f11a0097
3 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import { ContentConfig } from '@/modules/content/types';
export const content = (): ContentConfig => ({
SearchType: 'mysql',
});

View File

@ -1 +1,2 @@
export * from './database.config'; export * from './database.config';
export * from './content.config';

View File

@ -0,0 +1,5 @@
export type SearchType = 'mysql';
export interface ContentConfig {
SearchType?: SearchType;
}