Here we go again...

This commit is contained in:
2025-08-28 21:25:10 +04:00
parent 25d4762a3c
commit 42335c1178
62 changed files with 4579 additions and 4460 deletions

5
pkg/utils/convert.go Normal file
View File

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