create token decorator and consumer module

This commit is contained in:
2026-03-16 17:56:51 +03:30
parent 0ad6a3200e
commit 69e9a0d082
38 changed files with 1027 additions and 66 deletions
@@ -0,0 +1,6 @@
import { Controller } from '@nestjs/common'
import { ApiTags } from '@nestjs/swagger'
@ApiTags('Consumer')
@Controller('consumer')
export class ConsumerController {}