import { Module } from '@nestjs/common';
import { DatabaseModule } from '../database/database.module';
import { MapsModule } from '../maps/maps.module';
import { StorageModule } from '../storage/storage.module';
import { TrackingModule } from '../tracking/tracking.module';
import { PublicRestaurantsController } from './public-restaurants.controller';
import { RestaurantsController } from './restaurants.controller';
import { RestaurantsService } from './restaurants.service';

@Module({ imports: [DatabaseModule, TrackingModule, StorageModule, MapsModule], controllers: [RestaurantsController, PublicRestaurantsController], providers: [RestaurantsService], exports: [RestaurantsService] })
export class RestaurantsModule {}
