// Code generated by GoVPP's binapi-generator. DO NOT EDIT. package builtinurl import ( "encoding/json" "net/http" ) func RESTHandler(rpc RPCService) http.Handler { mux := http.NewServeMux() mux.HandleFunc("/builtinurl_enable", func(w http.ResponseWriter, req *http.Request) { var request = new(BuiltinurlEnable) reply, err := rpc.BuiltinurlEnable(req.Context(), request) if err != nil { http.Error(w, "request failed: "+err.Error(), http.StatusInternalServerError) return } rep, err := json.MarshalIndent(reply, "", " ") if err != nil { http.Error(w, "marshal failed: "+err.Error(), http.StatusInternalServerError) return } w.Write(rep) }) return http.HandlerFunc(mux.ServeHTTP) }