edge proxy support + updated readme

This commit is contained in:
stefanodvx 2025-04-20 01:00:50 +02:00
parent 8d57b97b0f
commit 6f5e792b01
5 changed files with 222 additions and 86 deletions

9
models/edgeproxy.go Normal file
View file

@ -0,0 +1,9 @@
package models
type ProxyResponse struct {
URL string `json:"url"`
StatusCode int `json:"status_code"`
Text string `json:"text"`
Headers map[string]string `json:"headers"`
Cookies []string `json:"cookies"`
}