mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 08:44:14 +01:00
11 lines
137 B
Go
11 lines
137 B
Go
|
package endpoints
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Request struct {
|
||
|
Stamp time.Time
|
||
|
RemoteAddr string
|
||
|
Method string
|
||
|
Path string
|
||
|
}
|