api_user_rankup_patch.go 265 B

12345678910111213141516
  1. package route
  2. import (
  3. "encoding/json"
  4. "opennamu/route/tool"
  5. )
  6. func Api_user_rankup_patch(call_arg []string) string {
  7. other_set := map[string]string{}
  8. json.Unmarshal([]byte(call_arg[0]), &other_set)
  9. db := tool.DB_connect()
  10. defer db.Close()
  11. return "{}"
  12. }