Skip to content

Commit 5228d99

Browse files
committed
chore(image_module): removing image controller from server
1 parent 8292afc commit 5228d99

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ EXERCISEDB_DATABASE=
22

33
NODE_ENV=
44

5-
EXERCISEDB_CACHE=
5+
EXERCISEDB_STORAGE_CACHE=
66

77
#supabase creds
88
SUPABASE_PROJECT_URL=

src/server.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
import { BodyPartController, EquipmentController, MuscleController, ExerciseController } from './modules'
22
import { App } from './app'
3-
import { ImagesController } from '#modules/images/controllers/image.controller.js'
43
import { UserController } from '#modules/users/controllers/user.controller.js'
54

65
const app = new App([
76
new ExerciseController(),
87
new MuscleController(),
98
new EquipmentController(),
109
new BodyPartController(),
11-
new ImagesController(),
1210
new UserController()
1311
]).getApp()
1412

0 commit comments

Comments
 (0)