fix: move middleware to handlers, as it belongs there

This commit is contained in:
2024-12-04 23:12:39 +01:00
parent 17899cbf3d
commit 2d5f42bb28
7 changed files with 1 additions and 1 deletions

View File

@@ -3,8 +3,8 @@ package main
import ( import (
"me-fit/db" "me-fit/db"
"me-fit/handler" "me-fit/handler"
"me-fit/handler/middleware"
"me-fit/log" "me-fit/log"
"me-fit/middleware"
"me-fit/service" "me-fit/service"
"me-fit/types" "me-fit/types"