diff options
Diffstat (limited to 'binapi/teib/teib_rest.ba.go')
-rw-r--r-- | binapi/teib/teib_rest.ba.go | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/binapi/teib/teib_rest.ba.go b/binapi/teib/teib_rest.ba.go deleted file mode 100644 index fb8bc17..0000000 --- a/binapi/teib/teib_rest.ba.go +++ /dev/null @@ -1,37 +0,0 @@ -// Code generated by GoVPP's binapi-generator. DO NOT EDIT. - -package teib - -import ( - "encoding/json" - "io/ioutil" - "net/http" -) - -func RESTHandler(rpc RPCService) http.Handler { - mux := http.NewServeMux() - mux.HandleFunc("/teib_entry_add_del", func(w http.ResponseWriter, req *http.Request) { - var request = new(TeibEntryAddDel) - b, err := ioutil.ReadAll(req.Body) - if err != nil { - http.Error(w, "read body failed", http.StatusBadRequest) - return - } - if err := json.Unmarshal(b, request); err != nil { - http.Error(w, "unmarshal data failed", http.StatusBadRequest) - return - } - reply, err := rpc.TeibEntryAddDel(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) -} |