fronted + nats

This commit is contained in:
2021-11-13 16:30:02 -03:00
parent 581b4def8a
commit c79c476473
2 changed files with 41 additions and 0 deletions
+12
View File
@@ -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
}