1
1
mirror of https://github.com/openziti/zrok.git synced 2025-01-14 18:08:22 +01:00
zrok/endpoints/requests.go
2023-01-10 17:40:20 -05:00

15 lines
197 B
Go

package endpoints
import "time"
type RequestHandler interface {
Requests() func() int32
}
type Request struct {
Stamp time.Time
RemoteAddr string
Method string
Path string
}