This commit is contained in:
Vladimir V Maksimov
2026-02-10 16:08:35 +03:00
parent 1f63c5fbd4
commit 8e1f17a359
9 changed files with 877 additions and 20 deletions

7
common/errors.go Normal file
View File

@@ -0,0 +1,7 @@
package common
import "errors"
var (
ErrAccessDenied = errors.New("access denied")
)