Skip to content

Commit 5661304

Browse files
committed
undo export changes
1 parent ff2b056 commit 5661304

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/mikro-orm.middleware.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)