first commit

This commit is contained in:
2025-04-23 09:29:23 +07:00
commit 76abeaf8ee
25 changed files with 1323 additions and 0 deletions

10
utils/utils.go Normal file
View File

@@ -0,0 +1,10 @@
package utils
import "strings"
func ReplaceGelar(gelar string) string {
gelar = strings.ReplaceAll(gelar, "{", "")
gelar = strings.ReplaceAll(gelar, "}", "")
gelar = strings.ReplaceAll(gelar, ",", " ")
return gelar
}