chore: migrate module path to gitea.unbound.se
presenter / test (pull_request) Successful in 2m16s
presenter / vulnerabilities (pull_request) Successful in 3m29s
pre-commit / pre-commit (pull_request) Successful in 6m51s

Update module path from git.unbound.se to gitea.unbound.se for Go module
discovery over HTTPS.
This commit is contained in:
2026-01-09 14:29:49 +01:00
parent 11e134b08f
commit fad40030e1
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ repos:
- id: go-imports
args:
- -local
- git.unbound.se/shiny/presenter
- gitea.unbound.se/shiny/presenter
- repo: https://github.com/lietu/go-pre-commit
rev: v1.0.0
hooks:
+1 -1
View File
@@ -18,7 +18,7 @@ Provides a standardized GraphQL error presenter that handles coded errors across
### Usage
```go
import "git.unbound.se/shiny/presenter"
import "gitea.unbound.se/shiny/presenter"
// Create error presenter with valid codes and entities
errorPresenter := presenter.New(logger, validCodes, validEntities, internalErrorCode)
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"github.com/stretchr/testify/require"
"git.unbound.se/shiny/presenter"
"gitea.unbound.se/shiny/presenter"
)
func TestCodedError_ErrorIs(t *testing.T) {
+1 -1
View File
@@ -1,4 +1,4 @@
module git.unbound.se/shiny/presenter
module gitea.unbound.se/shiny/presenter
go 1.24.1
+1 -1
View File
@@ -11,7 +11,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/vektah/gqlparser/v2/gqlerror"
"git.unbound.se/shiny/presenter"
"gitea.unbound.se/shiny/presenter"
)
func Test_globalErrorPresenter(t *testing.T) {