feat: support send sms
Some checks failed
build quyun / Build (push) Failing after 1m25s

This commit is contained in:
2025-12-20 22:46:42 +08:00
parent 0221a21bc4
commit e2be734b82
3 changed files with 40 additions and 0 deletions

8
backend_v1/utils/json.go Normal file
View File

@@ -0,0 +1,8 @@
package utils
import "encoding/json"
func JsonString(v any) string {
b, _ := json.Marshal(v)
return string(b)
}