Skip to content

Commit

Permalink
chore(image_module): removing image controller from server
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberboyanmol committed Jan 2, 2025
1 parent 8292afc commit 5228d99
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ EXERCISEDB_DATABASE=

NODE_ENV=

EXERCISEDB_CACHE=
EXERCISEDB_STORAGE_CACHE=

#supabase creds
SUPABASE_PROJECT_URL=
Expand Down
2 changes: 0 additions & 2 deletions src/server.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import { BodyPartController, EquipmentController, MuscleController, ExerciseController } from './modules'
import { App } from './app'
import { ImagesController } from '#modules/images/controllers/image.controller.js'
import { UserController } from '#modules/users/controllers/user.controller.js'

const app = new App([
new ExerciseController(),
new MuscleController(),
new EquipmentController(),
new BodyPartController(),
new ImagesController(),
new UserController()
]).getApp()

Expand Down

0 comments on commit 5228d99

Please sign in to comment.