aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/api
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-13 21:59:38 +0900
committernsfisis <nsfisis@gmail.com>2026-02-13 22:05:25 +0900
commit482c3a52a0fcc5870a7db4a190475caf61b211a3 (patch)
tree3369d0c929cb424752042afa8a36e1a37103b883 /backend/api
parentdff818158c790481868c995e0209f13aeb106251 (diff)
downloadphperkaigi-2026-albatross-482c3a52a0fcc5870a7db4a190475caf61b211a3.tar.gz
phperkaigi-2026-albatross-482c3a52a0fcc5870a7db4a190475caf61b211a3.tar.zst
phperkaigi-2026-albatross-482c3a52a0fcc5870a7db4a190475caf61b211a3.zip
refactor: rename module/package name
Diffstat (limited to 'backend/api')
-rw-r--r--backend/api/handler.go4
-rw-r--r--backend/api/handler_wrapper.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/backend/api/handler.go b/backend/api/handler.go
index 674424f..d2883a9 100644
--- a/backend/api/handler.go
+++ b/backend/api/handler.go
@@ -11,8 +11,8 @@ import (
"github.com/labstack/echo/v4"
"github.com/oapi-codegen/nullable"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/auth"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
+ "albatross-2026-backend/auth"
+ "albatross-2026-backend/db"
)
type Handler struct {
diff --git a/backend/api/handler_wrapper.go b/backend/api/handler_wrapper.go
index c592ed8..cfa9575 100644
--- a/backend/api/handler_wrapper.go
+++ b/backend/api/handler_wrapper.go
@@ -7,8 +7,8 @@ import (
"errors"
"strings"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/auth"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
+ "albatross-2026-backend/auth"
+ "albatross-2026-backend/db"
)
var _ StrictServerInterface = (*HandlerWrapper)(nil)