fronted + nats
parent
581b4def8a
commit
c79c476473
|
@ -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
|
||||
}
|
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue