aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/account/icon.go4
-rw-r--r--backend/admin/handler.go8
-rw-r--r--backend/admin/templates/base.html2
-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
11 files changed, 26 insertions, 26 deletions
diff --git a/backend/account/icon.go b/backend/account/icon.go
index 116ee20..4f195c6 100644
--- a/backend/account/icon.go
+++ b/backend/account/icon.go
@@ -11,8 +11,8 @@ import (
"path/filepath"
"time"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/fortee"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/fortee"
)
func FetchIcon(
diff --git a/backend/admin/handler.go b/backend/admin/handler.go
index f7fd63e..aec7b37 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/phperkaigi-2025-albatross/backend/account"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/auth"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/config"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
+ "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"
)
var jst = time.FixedZone("Asia/Tokyo", 9*60*60)
diff --git a/backend/admin/templates/base.html b/backend/admin/templates/base.html
index 653acc6..4397574 100644
--- a/backend/admin/templates/base.html
+++ b/backend/admin/templates/base.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <title>ADMIN {{ .Title }} | PHPerKaigi 2025 Albatross</title>
+ <title>ADMIN {{ .Title }} | iOSDC Japan 2025 Albatross</title>
<link rel="icon" href="{{ .BasePath }}favicon.svg">
<link rel="stylesheet" href="{{ .BasePath }}admin/css/normalize.css">
<link rel="stylesheet" href="{{ .BasePath }}admin/css/sakura.css">
diff --git a/backend/api/handler.go b/backend/api/handler.go
index 6561151..67f859c 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/phperkaigi-2025-albatross/backend/auth"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/auth"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
)
type Handler struct {
diff --git a/backend/api/handler_wrapper.go b/backend/api/handler_wrapper.go
index 95e6d2b..9c6c41a 100644
--- a/backend/api/handler_wrapper.go
+++ b/backend/api/handler_wrapper.go
@@ -7,8 +7,8 @@ import (
"errors"
"strings"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/auth"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/auth"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
)
var _ StrictServerInterface = (*HandlerWrapper)(nil)
diff --git a/backend/auth/auth.go b/backend/auth/auth.go
index f4c5931..ddad46e 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/phperkaigi-2025-albatross/backend/account"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/fortee"
+ "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"
)
var (
diff --git a/backend/auth/jwt.go b/backend/auth/jwt.go
index 88006a3..9718247 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/phperkaigi-2025-albatross/backend/db"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
)
var (
diff --git a/backend/game/hub.go b/backend/game/hub.go
index 46cd321..3697b4a 100644
--- a/backend/game/hub.go
+++ b/backend/game/hub.go
@@ -6,8 +6,8 @@ import (
"regexp"
"strings"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/taskqueue"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/taskqueue"
)
type Hub struct {
diff --git a/backend/gen/api/handler_wrapper_gen.go b/backend/gen/api/handler_wrapper_gen.go
index 6437f36..9a7a786 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/phperkaigi-2025-albatross/backend/auth"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/auth"
+ "github.com/nsfisis/iosdc-japan-2025-albatross/backend/db"
)
var _ StrictServerInterface = (*HandlerWrapper)(nil)
diff --git a/backend/go.mod b/backend/go.mod
index 96f5a23..7da9d69 100644
--- a/backend/go.mod
+++ b/backend/go.mod
@@ -1,4 +1,4 @@
-module github.com/nsfisis/phperkaigi-2025-albatross/backend
+module github.com/nsfisis/iosdc-japan-2025-albatross/backend
go 1.23.6
diff --git a/backend/main.go b/backend/main.go
index c13dea4..86dba0c 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/phperkaigi-2025-albatross/backend/admin"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/api"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/config"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/game"
- "github.com/nsfisis/phperkaigi-2025-albatross/backend/taskqueue"
+ "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"
)
func connectDB(ctx context.Context, dsn string) (*pgxpool.Pool, error) {