Spaces:
Sleeping
Sleeping
File size: 320 Bytes
57a889c | 1 2 3 4 5 6 7 8 9 10 11 | import { Module } from '@nestjs/common';
import { TodoController } from './todo.controller';
import { TodoService } from './todo.service';
/** To-do domain (S3 — Phase 2 trip sub-domain). Registered in AppModule. */
@Module({
controllers: [TodoController],
providers: [TodoService],
})
export class TodoModule {}
|