refactor: move config package to root

This commit is contained in:
Prad Nukala 2025-01-04 21:28:06 -05:00
parent 3c35582bc3
commit 80913ee7d3
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ package vault
import ( import (
"github.com/labstack/echo/v4" "github.com/labstack/echo/v4"
echomiddleware "github.com/labstack/echo/v4/middleware" echomiddleware "github.com/labstack/echo/v4/middleware"
motr "github.com/onsonr/motr/internal/config" motr "github.com/onsonr/motr/config"
motrorm "github.com/onsonr/motr/internal/models" motrorm "github.com/onsonr/motr/internal/models"
"github.com/onsonr/motr/pkg/context" "github.com/onsonr/motr/pkg/context"
) )

View File

@ -20,7 +20,7 @@ import (
_ "github.com/ncruces/go-sqlite3/driver" _ "github.com/ncruces/go-sqlite3/driver"
_ "github.com/ncruces/go-sqlite3/embed" _ "github.com/ncruces/go-sqlite3/embed"
vault "github.com/onsonr/motr/app" vault "github.com/onsonr/motr/app"
motr "github.com/onsonr/motr/internal/config" motr "github.com/onsonr/motr/config"
motrorm "github.com/onsonr/motr/internal/models" motrorm "github.com/onsonr/motr/internal/models"
sink "github.com/onsonr/motr/internal/sink" sink "github.com/onsonr/motr/internal/sink"
) )

View File

@ -4,7 +4,7 @@ import (
"encoding/json" "encoding/json"
"github.com/ipfs/boxo/files" "github.com/ipfs/boxo/files"
motr "github.com/onsonr/motr/internal/config" motr "github.com/onsonr/motr/config"
) )
const SchemaVersion = 1 const SchemaVersion = 1