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

View File

@@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2025 saeedafzal Copyright (c) 2025 Saeed Afzal
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction, including associated documentation files (the "Software"), to deal in the Software without restriction, including

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() {}