Shitty gadgets removed. Some useful gadgets added.

This commit is contained in:
2026-07-11 03:12:56 +03:30
parent 2f8c9f0f4d
commit ed8ff61205
31 changed files with 1489 additions and 170 deletions

View File

@@ -1,8 +1,10 @@
import { Module } from '@nestjs/common';
import { StaffModule } from '../staff/staff.module';
import { TodayController } from './today.controller';
import { TodayService } from './today.service';
@Module({
imports: [StaffModule],
controllers: [TodayController],
providers: [TodayService],
})