Request data.

This commit is contained in:
2025-12-01 23:33:26 +00:00
parent f0b979708d
commit f0b0139b79
2 changed files with 12 additions and 1 deletions

11
tui/rest/request.go Normal file
View File

@@ -0,0 +1,11 @@
package rest
import "net/http"
type Request struct{
method string
url string
headers http.Header
}
func (r Request) queryParams() {}