mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-20 19:42:04 +08:00
12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
|
|
import { Runtime } from './service';
|
|
|
|
@Global()
|
|
@Module({
|
|
providers: [Runtime],
|
|
exports: [Runtime],
|
|
})
|
|
export class RuntimeModule {}
|
|
export { Runtime };
|