Skip to content

Commit

Permalink
chore: refactor models to modules (#158)
Browse files Browse the repository at this point in the history
* chore: refactor models to modules

Signed-off-by: 35C4n0r <jaykumar20march@gmail.com>

* chore: reverting / endpoint

Signed-off-by: 35C4n0r <jaykumar20march@gmail.com>

* chore: fix root endpoint

Signed-off-by: 35C4n0r <jaykumar20march@gmail.com>

---------

Signed-off-by: 35C4n0r <jaykumar20march@gmail.com>
  • Loading branch information
35C4n0r authored Jul 22, 2024
1 parent 15ab9c1 commit f0dc182
Show file tree
Hide file tree
Showing 19 changed files with 5 additions and 27 deletions.
22 changes: 0 additions & 22 deletions src/app.controller.spec.ts

This file was deleted.

10 changes: 5 additions & 5 deletions src/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { CityModule } from './models/city/city.module';
import { GeorevModule } from './models/georev/georev.module';
import { LocationModule } from './models/location/location.module';
import { CityModule } from './modules/city/city.module';
import { GeorevModule } from './modules/georev/georev.module';
import { LocationModule } from './modules/location/location.module';
import { ConfigModule } from '@nestjs/config';
import { config } from './config/config';
import { AppController } from './app.controller';
import { AppService } from './app.service';

@Module({
imports: [
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f0dc182

Please sign in to comment.