🐛 Fixed repo prefix URL's

This commit is contained in:
Maxim Lebedev 2024-05-01 04:30:53 +05:00
parent f933d066ad
commit 19b78e0a85
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
3 changed files with 4 additions and 3 deletions

View File

@ -23,7 +23,7 @@ check: ## Perform self-tests
$(GO) test -v -cover -failfast -short -shuffle=on $(GOFLAGS) $(srcdir)/...
container: build/Dockerfile ## Builds Docker container image
$(DOCKER) build $(DOCKERFLAGS) -f $(srcdir)/build/Dockerfile -t $REPO_LINK .
$(DOCKER) build $(DOCKERFLAGS) -f $(srcdir)/build/Dockerfile -t source.toby3d.me${REPO_LINK} .
.PHONY: help
help: ## Display this help screen

2
go.mod
View File

@ -1,4 +1,4 @@
module $REPO_LINK
module source.toby3d.me$REPO_LINK
go 1.22.2

View File

@ -5,7 +5,6 @@
package main
import (
"$REPO_LINK/internal/domain"
"flag"
"log"
"os"
@ -14,6 +13,8 @@ import (
"runtime/pprof"
"syscall"
"source.toby3d.me$REPO_LINK/internal/domain"
"github.com/caarlos0/env/v10"
)