13 lines
423 B
TypeScript
13 lines
423 B
TypeScript
|
|
export const PLUGIN_NAME_POSTGRES = "PostgresDbPlugin";
|
||
|
|
export const PLUGIN_NAME_MONGODB = " MongoDBPlugin";
|
||
|
|
export const PLUGIN_NAME_DBS = [PLUGIN_NAME_POSTGRES, PLUGIN_NAME_MONGODB];
|
||
|
|
|
||
|
|
export const PLUGIN_PACKAGE_POSTGRES = "postgres-plugin";
|
||
|
|
export const PLUGIN_PACKAGE_MONGO = "mongo-plugin";
|
||
|
|
export const PLUGIN_PACKAGE_DBS = [
|
||
|
|
PLUGIN_PACKAGE_POSTGRES,
|
||
|
|
PLUGIN_PACKAGE_MONGO,
|
||
|
|
];
|
||
|
|
|
||
|
|
export const QUERY_CONSTANT = "DB";
|