Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
astherath committed Sep 19, 2024
1 parent 10990c2 commit f22c20b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { container } from 'tsyringe';
import { CommonConfig, CommonConfigKeys } from './common/CommonConfig';
import { HomeController } from './controllers/Home';

export class App {
export default class App {
public app: Application;
private homeController: HomeController;

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'reflect-metadata';
import { logger } from '@azure/identity';
import { setup } from './common/AppStart';
import { App } from './App';
import App from './App';

const init = async () => {
logger.verbose('Starting app...');
Expand Down

0 comments on commit f22c20b

Please sign in to comment.