From a426edb1f65cf9742a1119ca2d618890b156263a Mon Sep 17 00:00:00 2001 From: antanst Date: Mon, 26 May 2025 18:18:21 +0300 Subject: [PATCH] Use our own UID package. --- go.mod | 1 + main.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 35b35bd..462344e 100644 --- a/go.mod +++ b/go.mod @@ -5,6 +5,7 @@ go 1.24.3 require ( git.antanst.com/antanst/logging v0.0.1 git.antanst.com/antanst/xerrors v0.0.1 + git.antanst.com/antanst/uid v0.0.1 github.com/gabriel-vasile/mimetype v1.4.8 github.com/matoous/go-nanoid/v2 v2.1.0 ) diff --git a/main.go b/main.go index d320b80..8d18fe4 100644 --- a/main.go +++ b/main.go @@ -15,8 +15,8 @@ import ( "gemserve/config" "gemserve/server" - "gemserve/uid" logging "git.antanst.com/antanst/logging" + "git.antanst.com/antanst/uid" "git.antanst.com/antanst/xerrors" )