From 58b1c67b97b6dd1b4295a6f1ebdca9f38a3f6dce Mon Sep 17 00:00:00 2001 From: Alexander Lazarenko Date: Sat, 22 Feb 2025 22:16:52 +0300 Subject: [PATCH] Update module path to include version suffix The module path was updated to align with Go versioning conventions by appending "/v2". This change ensures compatibility with Go's module versioning system and properly reflects the major version update. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index ee04968..82ee13d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitea.unprism.ru/KRBL/n9m +module gitea.unprism.ru/KRBL/n9m/v2 go 1.21.3