Commit 547dddd5 authored by Diego Iván's avatar Diego Iván
Browse files

agregando modulo town

parent 51b9269f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ import { State } from './state/entities/state.entity';
import { ServeStaticModule } from '@nestjs/serve-static';
import { join } from 'path';
import { Town } from './town/entities/town.entity';
import { TownModule } from './town/town.module';
@Module({
  imports: [
    TypeOrmModule.forRoot({
@@ -33,6 +34,7 @@ import { Town } from './town/entities/town.entity';
    AuthUserModule,
    StateModule,
    DatabaseSeederModule,
    TownModule,
    ServeStaticModule.forRoot({
      rootPath: join(__dirname, '..', 'static'),
    }),