mirror of
https://github.com/openziti/zrok.git
synced 2024-11-29 19:43:26 +01:00
15 lines
197 B
Go
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
|
||
|
}
|