crystelf-core/src/core/auto-update/auto-update.module.ts
2025-07-25 18:30:23 +08:00

11 lines
288 B
TypeScript

import { Module } from '@nestjs/common';
import { AutoUpdateService } from './auto-update.service';
import { PathModule } from '../path/path.module';
@Module({
imports: [PathModule],
providers: [AutoUpdateService],
exports: [AutoUpdateService],
})
export class AutoUpdateModule {}