Skip to content
Snippets Groups Projects
Commit 8756379f authored by Nabilsenko's avatar Nabilsenko
Browse files

Initial Commit

parent 35a9e597
No related branches found
No related tags found
1 merge request!3Get people
import { Module } from '@nestjs/common';
import { MongooseModule } from '@nestjs/mongoose';
import { mongodb } from './config';
import { PeopleModule } from './people/people.module';
@Module({
imports: [MongooseModule.forRoot(mongodb.uri)],
imports: [MongooseModule.forRoot(mongodb.uri), AppModule, PeopleModule],
controllers: [],
providers: [],
})
......
import * as _config from './config.json';
import * as _config from './config.template.json';
import { IConfig } from './config.model';
const config = _config as IConfig;
......
import { Module } from '@nestjs/common';
@Module({})
export class PeopleModule {}
yarn.lock 0 → 100644
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment