diff --git a/api/frontend/lib.go b/api/frontend/lib.go new file mode 100644 index 0000000..c0f2383 --- /dev/null +++ b/api/frontend/lib.go @@ -0,0 +1,29 @@ +package frontend + +import "go.digitalcircle.com.br/open/replaycli-go/api" + +type Cli struct { +} + +type HttpRes struct { + Headers map[string]string + Body []byte +} + +type HttpReq struct { + Url string + Headers map[string]string + Body []byte +} + +func (c *Cli) Get(req *HttpReq, copts ...*api.CallOpts) (*HttpRes, error) { + res := &HttpRes{} + //err := c.HttpCli().JsonPost("/ipc/ocr/", opts, res) + err := api.Call("ocr.ocr", req, &res, copts...) + return res, err +} + +func NewCli() *Cli { + ret := &Cli{} + return ret +} diff --git a/api/http/lib.go b/api/http/lib.go new file mode 100644 index 0000000..1707225 --- /dev/null +++ b/api/http/lib.go @@ -0,0 +1,12 @@ +package http + +type HttpRes struct { + Headers map[string]string + Body []byte +} + +type HttpReq struct { + Url string + Headers map[string]string + Body []byte +}