chore: use stdlib uuid package

Go 1.27 ships a uuid package with the same API, dropping the direct
dependency on github.com/google/uuid.

Assisted-by: Claude:Opus 5
This commit is contained in:
silverwind
2026-08-19 23:21:38 +02:00
parent 052bc4b496
commit c15e6e793b
15 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -15,9 +15,9 @@ import (
"gitea.dev/modules/timeutil"
webhook_module "gitea.dev/modules/webhook"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"uuid"
"xorm.io/builder"
)