pas/src/Constants/constants.go

23 lines
315 B
Go
Raw Normal View History

2024-07-14 04:49:21 +02:00
package Constants
type Method string
type Response string
const (
UNKNOWN Method = "wtf bro"
GET Method = "GET"
POST Method = "POST"
)
const (
OK Response = "OK"
NOTFOUND Response = "NOTFOUND"
)
type Intent struct {
Method Method
Path string
Version string
Headers map[string]string
}