initial commit

This commit is contained in:
root
2024-10-30 13:23:52 +01:00
commit 68ba48a3a2
29 changed files with 1977 additions and 0 deletions

8
utils/utils.go Normal file
View File

@@ -0,0 +1,8 @@
package utils
func BoolToInt(b bool) int {
if b {
return 1
}
return 0
}