package route import ( "opennamu/route/tool" jsoniter "github.com/json-iterator/go" ) func Api_edit_move_all(call_arg []string) string { var json = jsoniter.ConfigCompatibleWithStandardLibrary other_set := map[string]string{} json.Unmarshal([]byte(call_arg[0]), &other_set) db := tool.DB_connect() defer db.Close() if other_set["select"] == "include" { } else if other_set["select"] == "start" { } else { } return "{}" }