created: utils package

This commit is contained in:
nquidox 2025-07-06 22:21:32 +03:00
parent f4c4065812
commit 5ffb6dde46
4 changed files with 52 additions and 0 deletions

7
pkg/utils/handler.go Normal file
View file

@ -0,0 +1,7 @@
package utils
type Utils struct{}
func NewUtils() *Utils {
return &Utils{}
}