chore: annoucement module with user-group

This commit is contained in:
Matin
2025-01-26 10:57:20 +03:30
parent 6da4b5114c
commit c8c98be6ee
13 changed files with 239 additions and 5 deletions
@@ -0,0 +1,8 @@
import { Controller } from "@nestjs/common";
import { ApiTags } from "@nestjs/swagger";
@ApiTags("Announcements")
@Controller("announcements")
export class AnnouncementController {
constructor() {}
}