aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--backend/config.go2
-rw-r--r--backend/parser.go2
-rw-r--r--go.mod2
-rw-r--r--main.go2
5 files changed, 5 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index d394685..15031c6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -159,5 +159,5 @@ go.work.sum
public
config.toml
data
-small-world
+small-web
*.tar.gz
diff --git a/backend/config.go b/backend/config.go
index d6cf25a..b59c00b 100644
--- a/backend/config.go
+++ b/backend/config.go
@@ -5,7 +5,7 @@ import (
"log/slog"
"os"
- "git.anhgelus.world/anhgelus/small-world/markdown"
+ "git.anhgelus.world/anhgelus/small-web/markdown"
"github.com/pelletier/go-toml/v2"
)
diff --git a/backend/parser.go b/backend/parser.go
index 5ef6c05..c7d6445 100644
--- a/backend/parser.go
+++ b/backend/parser.go
@@ -7,7 +7,7 @@ import (
"log/slog"
"strings"
- "git.anhgelus.world/anhgelus/small-world/markdown"
+ "git.anhgelus.world/anhgelus/small-web/markdown"
"github.com/pelletier/go-toml/v2"
)
diff --git a/go.mod b/go.mod
index 4579580..65f2039 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module git.anhgelus.world/anhgelus/small-world
+module git.anhgelus.world/anhgelus/small-web
go 1.25.1
diff --git a/main.go b/main.go
index 4a78f3e..add522c 100644
--- a/main.go
+++ b/main.go
@@ -13,7 +13,7 @@ import (
"strconv"
"syscall"
- "git.anhgelus.world/anhgelus/small-world/backend"
+ "git.anhgelus.world/anhgelus/small-web/backend"
"github.com/joho/godotenv"
)