zrok/endpoints/requests.go

15 lines
197 B
Go
Raw Normal View History

2023-01-10 23:40:20 +01:00
package endpoints
import "time"
type RequestHandler interface {
Requests() func() int32
}
type Request struct {
Stamp time.Time
RemoteAddr string
Method string
Path string
}