Skip to content

Commit

Permalink
refactor: rename AppController import and update App import path
Browse files Browse the repository at this point in the history
  • Loading branch information
rsaz committed Nov 18, 2024
1 parent d819a1c commit c182833
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion non_opinionated/src/app.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AppExpress } from "@expressots/adapter-express";
import { AppContainer, CreateModule } from "@expressots/core";
import { AppController } from "./controller";
import { AppController } from "./app.controller";

export class App extends AppExpress {
private config: AppContainer = this.configContainer([
Expand Down
2 changes: 1 addition & 1 deletion non_opinionated/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AppFactory } from "@expressots/core";
import { App } from "app";
import { App } from "./app";

AppFactory.create(App).then((app) => app.listen(3000));

0 comments on commit c182833

Please sign in to comment.