first commit

This commit is contained in:
2025-10-11 19:53:28 +04:00
commit 0d53670ab7
18 changed files with 2413 additions and 0 deletions

5
common/convert.go Normal file
View File

@@ -0,0 +1,5 @@
package common
func ToPtr[T any](value T) *T {
return &value
}