Last active
February 11, 2021 18:39
-
-
Save alphamikle/3e253930929ff3487beb0ce4a4a9803e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Controller() | |
@ApiTags('app') | |
export class AppController { | |
constructor( | |
private readonly appService: AppService, | |
private readonly connection: Connection, // <-- use this | |
) { | |
} | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment