augmenttoolkit / server /src /nest /todo /todo.module.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
57a889c verified
Raw
History Blame Contribute Delete
320 Bytes
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 {}