11 lines
399 B
TypeScript
11 lines
399 B
TypeScript
|
|
/**
|
||
|
|
* Platform Services Module
|
||
|
|
* Exports all platform service related classes and types
|
||
|
|
*/
|
||
|
|
|
||
|
|
export { PlatformServicesManager } from './manager.ts';
|
||
|
|
export type { IPlatformServiceProvider } from './providers/base.ts';
|
||
|
|
export { BasePlatformServiceProvider } from './providers/base.ts';
|
||
|
|
export { MongoDBProvider } from './providers/mongodb.ts';
|
||
|
|
export { MinioProvider } from './providers/minio.ts';
|