File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const testOptions: Options = {
2323} ;
2424
2525@Controller ( '/foo' )
26- export class FooController {
26+ class FooController {
2727
2828 constructor ( @InjectMikroORM ( 'database-foo' ) private database1 : MikroORM ) { }
2929
@@ -35,7 +35,7 @@ export class FooController {
3535}
3636
3737@Controller ( '/bar' )
38- export class BarController {
38+ class BarController {
3939
4040 constructor ( @InjectMikroORM ( 'database-bar' ) private database2 : MikroORM ) { }
4141
@@ -47,7 +47,7 @@ export class BarController {
4747}
4848
4949@Injectable ( )
50- export class TestMiddleware implements NestMiddleware {
50+ class TestMiddleware implements NestMiddleware {
5151
5252 constructor ( @InjectEntityManager ( 'database-foo' ) private readonly em : EntityManager ) { }
5353
You can’t perform that action at this time.
0 commit comments