From 80913ee7d3335b2d339dedfeed2cc6c1b79283e6 Mon Sep 17 00:00:00 2001 From: Darp Alakun Date: Sat, 4 Jan 2025 21:28:06 -0500 Subject: [PATCH] refactor: move config package to root --- app/app.go | 2 +- cmd/main.go | 2 +- embed/codec.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/app.go b/app/app.go index ee7b4f4..0046a53 100644 --- a/app/app.go +++ b/app/app.go @@ -5,7 +5,7 @@ package vault import ( "github.com/labstack/echo/v4" 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" "github.com/onsonr/motr/pkg/context" ) diff --git a/cmd/main.go b/cmd/main.go index 31872be..ebc7328 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -20,7 +20,7 @@ import ( _ "github.com/ncruces/go-sqlite3/driver" _ "github.com/ncruces/go-sqlite3/embed" 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" sink "github.com/onsonr/motr/internal/sink" ) diff --git a/embed/codec.go b/embed/codec.go index 839f880..0144c05 100644 --- a/embed/codec.go +++ b/embed/codec.go @@ -4,7 +4,7 @@ import ( "encoding/json" "github.com/ipfs/boxo/files" - motr "github.com/onsonr/motr/internal/config" + motr "github.com/onsonr/motr/config" ) const SchemaVersion = 1