refactor: reorganize config and middleware packages

This commit is contained in:
2025-05-09 14:36:37 -04:00
parent a824fa90a5
commit a9b40feb02
67 changed files with 92 additions and 315 deletions

View File

@@ -4,9 +4,9 @@
package main
import (
"github.com/sonr-io/motr/config"
"github.com/sonr-io/motr/controller"
"github.com/sonr-io/motr/internal/config"
"github.com/sonr-io/motr/internal/middleware"
"github.com/sonr-io/motr/middleware"
"github.com/sonr-io/motr/routes"
)

View File

@@ -4,9 +4,9 @@
package main
import (
"github.com/sonr-io/motr/config"
"github.com/sonr-io/motr/controller"
"github.com/sonr-io/motr/internal/config"
"github.com/sonr-io/motr/internal/middleware"
"github.com/sonr-io/motr/middleware"
"github.com/sonr-io/motr/routes"
)