7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
|
import { Injectable } from '@nestjs/common';
|
||
|
import { InjectRepository } from '@nestjs/typeorm';
|
||
|
import { Repository } from 'typeorm';
|
||
|
|
||
|
@Injectable()
|
||
|
export class AppService {}
|