diff --git a/api/router.go b/api/router.go
index 2e5cf65..15c9209 100644
--- a/api/router.go
+++ b/api/router.go
@@ -1,17 +1,10 @@
 package api
 
 import (
-	"git.lumeweb.com/LumeWeb/gitea-github-proxy/config"
 	"github.com/gorilla/mux"
-	"go.uber.org/fx"
 )
 
-type RouterParams struct {
-	fx.In
-	Config *config.Config
-}
-
-func NewRouter(params RouterParams) *mux.Router {
+func NewRouter() *mux.Router {
 	r := mux.NewRouter()
 
 	return r