chore: add typeorm config
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
import { Controller } from '@nestjs/common';
|
||||
|
||||
@Controller('tickets')
|
||||
export class TicketsController {}
|
||||
@@ -0,0 +1,9 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TicketsService } from './tickets.service';
|
||||
import { TicketsController } from './tickets.controller';
|
||||
|
||||
@Module({
|
||||
providers: [TicketsService],
|
||||
controllers: [TicketsController]
|
||||
})
|
||||
export class TicketsModule {}
|
||||
@@ -0,0 +1,4 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
|
||||
@Injectable()
|
||||
export class TicketsService {}
|
||||
Reference in New Issue
Block a user