aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/api
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-04 21:24:28 +0900
committernsfisis <nsfisis@gmail.com>2025-03-04 21:24:28 +0900
commit3f73872865263e8690e12f4b43040ed38b062f28 (patch)
treee3674f2a30d0a7da69002e31693d9bf3c32d927d /backend/api
parent941557cba8dcf2aae9b08e2f61420437f5603b0c (diff)
downloadiosdc-japan-2025-albatross-3f73872865263e8690e12f4b43040ed38b062f28.tar.gz
iosdc-japan-2025-albatross-3f73872865263e8690e12f4b43040ed38b062f28.tar.zst
iosdc-japan-2025-albatross-3f73872865263e8690e12f4b43040ed38b062f28.zip
update go package names
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 a0ecd4c..dafcf84 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-2024-albatross/backend/auth"
- "github.com/nsfisis/iosdc-japan-2024-albatross/backend/db"
+ "github.com/nsfisis/phperkaigi-2025-albatross/backend/auth"
+ "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
)
type Handler struct {
diff --git a/backend/api/handler_wrapper.go b/backend/api/handler_wrapper.go
index 9f524e9..681b064 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-2024-albatross/backend/auth"
- "github.com/nsfisis/iosdc-japan-2024-albatross/backend/db"
+ "github.com/nsfisis/phperkaigi-2025-albatross/backend/auth"
+ "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
)
var _ StrictServerInterface = (*HandlerWrapper)(nil)