aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--backend/account/icon.go4
-rw-r--r--backend/admin/handler.go8
-rw-r--r--backend/api/handler.go4
-rw-r--r--backend/api/handler_wrapper.go4
-rw-r--r--backend/auth/auth.go6
-rw-r--r--backend/auth/jwt.go2
-rw-r--r--backend/game/hub.go4
-rw-r--r--backend/gen/api/handler_wrapper_gen.go4
-rw-r--r--backend/go.mod2
-rw-r--r--backend/main.go12
-rw-r--r--frontend/package-lock.json4
-rw-r--r--frontend/package.json2
-rw-r--r--worker/php/package-lock.json4
-rw-r--r--worker/php/package.json2
-rw-r--r--worker/swift/go.mod2
15 files changed, 32 insertions, 32 deletions
diff --git a/backend/account/icon.go b/backend/account/icon.go
index 9e5e379..8a7ecd0 100644
--- a/backend/account/icon.go
+++ b/backend/account/icon.go
@@ -11,8 +11,8 @@ import (
"path/filepath"
"time"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/fortee"
+ "albatross-2026-backend/db"
+ "albatross-2026-backend/fortee"
)
func FetchIcon(
diff --git a/backend/admin/handler.go b/backend/admin/handler.go
index 5316250..28e7970 100644
--- a/backend/admin/handler.go
+++ b/backend/admin/handler.go
@@ -12,10 +12,10 @@ import (
"github.com/jackc/pgx/v5/pgtype"
"github.com/labstack/echo/v4"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/account"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/auth"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/config"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
+ "albatross-2026-backend/account"
+ "albatross-2026-backend/auth"
+ "albatross-2026-backend/config"
+ "albatross-2026-backend/db"
)
var jst = time.FixedZone("Asia/Tokyo", 9*60*60)
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)
diff --git a/backend/auth/auth.go b/backend/auth/auth.go
index ddad46e..d5264ec 100644
--- a/backend/auth/auth.go
+++ b/backend/auth/auth.go
@@ -9,9 +9,9 @@ import (
"github.com/jackc/pgx/v5"
"golang.org/x/crypto/bcrypt"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/account"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/fortee"
+ "albatross-2026-backend/account"
+ "albatross-2026-backend/db"
+ "albatross-2026-backend/fortee"
)
var (
diff --git a/backend/auth/jwt.go b/backend/auth/jwt.go
index 9718247..217d384 100644
--- a/backend/auth/jwt.go
+++ b/backend/auth/jwt.go
@@ -7,7 +7,7 @@ import (
"github.com/golang-jwt/jwt/v5"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
+ "albatross-2026-backend/db"
)
var (
diff --git a/backend/game/hub.go b/backend/game/hub.go
index 364e590..910911a 100644
--- a/backend/game/hub.go
+++ b/backend/game/hub.go
@@ -6,8 +6,8 @@ import (
"regexp"
"strings"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/taskqueue"
+ "albatross-2026-backend/db"
+ "albatross-2026-backend/taskqueue"
)
type Hub struct {
diff --git a/backend/gen/api/handler_wrapper_gen.go b/backend/gen/api/handler_wrapper_gen.go
index 9a7a786..1aeaba7 100644
--- a/backend/gen/api/handler_wrapper_gen.go
+++ b/backend/gen/api/handler_wrapper_gen.go
@@ -107,8 +107,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)
diff --git a/backend/go.mod b/backend/go.mod
index 7da9d69..2d38926 100644
--- a/backend/go.mod
+++ b/backend/go.mod
@@ -1,4 +1,4 @@
-module github.com/nsfisis/iosdc-japan-2025-albatross/backend
+module albatross-2026-backend
go 1.23.6
diff --git a/backend/main.go b/backend/main.go
index 86dba0c..1f48af0 100644
--- a/backend/main.go
+++ b/backend/main.go
@@ -11,12 +11,12 @@ import (
"github.com/labstack/echo/v4/middleware"
oapimiddleware "github.com/oapi-codegen/echo-middleware"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/admin"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/api"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/config"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/game"
- "github.com/nsfisis/iosdc-japan-2025-albatross/backend/taskqueue"
+ "albatross-2026-backend/admin"
+ "albatross-2026-backend/api"
+ "albatross-2026-backend/config"
+ "albatross-2026-backend/db"
+ "albatross-2026-backend/game"
+ "albatross-2026-backend/taskqueue"
)
func connectDB(ctx context.Context, dsn string) (*pgxpool.Pool, error) {
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index f00b4d0..033d678 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -1,10 +1,10 @@
{
- "name": "iosdc-japan-2025-albatross-frontend",
+ "name": "albatross-2026-frontend",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
- "name": "iosdc-japan-2025-albatross-frontend",
+ "name": "albatross-2026-frontend",
"dependencies": {
"@base-ui-components/react": "^1.0.0-alpha.7",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
diff --git a/frontend/package.json b/frontend/package.json
index 9767a12..a013950 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -1,5 +1,5 @@
{
- "name": "iosdc-japan-2025-albatross-frontend",
+ "name": "albatross-2026-frontend",
"private": true,
"sideEffects": false,
"type": "module",
diff --git a/worker/php/package-lock.json b/worker/php/package-lock.json
index d682e43..f0b180c 100644
--- a/worker/php/package-lock.json
+++ b/worker/php/package-lock.json
@@ -1,10 +1,10 @@
{
- "name": "iosdc-japan-2025-albatross-worker",
+ "name": "albatross-2026-worker-php",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
- "name": "iosdc-japan-2025-albatross-worker",
+ "name": "albatross-2026-worker-php",
"dependencies": {
"@hono/node-server": "^1.13.8",
"hono": "^4.7.4"
diff --git a/worker/php/package.json b/worker/php/package.json
index c1b0569..23a61b2 100644
--- a/worker/php/package.json
+++ b/worker/php/package.json
@@ -1,5 +1,5 @@
{
- "name": "iosdc-japan-2025-albatross-worker",
+ "name": "albatross-2026-worker-php",
"private": true,
"type": "module",
"main": "index.mjs",
diff --git a/worker/swift/go.mod b/worker/swift/go.mod
index 8fb503b..5e4a7b3 100644
--- a/worker/swift/go.mod
+++ b/worker/swift/go.mod
@@ -1,4 +1,4 @@
-module github.com/nsfisis/iosdc-japan-2025-albatross/worker/swift
+module albatross-2026-worker-swift
go 1.23.6