"git@gitlab.labranet.jamk.fi:AA2301/ttc2050-exercises.git" did not exist on "6c1560b08e0443aea88d31e13e1d3ba31cfbaf1c"
Newer
Older
import { Module } from '@nestjs/common';
import { APP_FILTER, APP_INTERCEPTOR } from '@nestjs/core';
import { TypeOrmModule } from "@nestjs/typeorm";
import { AppService } from './app.service';
import { Connection } from "typeorm";
import { UserModule } from './user/user.module';
import { HttpErrorFilter } from './shared/http-error.filter';
import { LoggingInterceptor } from './shared/logging.interceptor';
import { MapMarkerModule } from './mapmarkers/mapmarkers.module';
import { GameModule } from './game/game.module';
imports: [TypeOrmModule.forRoot(), UserModule, MapMarkerModule, GameModule],
controllers: [],