add content db type
This commit is contained in:
parent
87aba1d0eb
commit
37f11a0097
5
src/config/content.config.ts
Normal file
5
src/config/content.config.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { ContentConfig } from '@/modules/content/types';
|
||||||
|
|
||||||
|
export const content = (): ContentConfig => ({
|
||||||
|
SearchType: 'mysql',
|
||||||
|
});
|
@ -1 +1,2 @@
|
|||||||
export * from './database.config';
|
export * from './database.config';
|
||||||
|
export * from './content.config';
|
||||||
|
5
src/modules/content/types.ts
Normal file
5
src/modules/content/types.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export type SearchType = 'mysql';
|
||||||
|
|
||||||
|
export interface ContentConfig {
|
||||||
|
SearchType?: SearchType;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user