Files
services/function/handler/function.go
Asim Aslam 609c4c9813 functions branch and region support (#330)
* branch and region support

* .

* .

* .

* .

* fix functions

* .

* break loop

* update example

* update examples
2021-12-16 19:23:03 +00:00

17 lines
288 B
Go

package handler
import (
"regexp"
)
var (
IDFormat = regexp.MustCompilePOSIX("[a-z0-9-]+")
NameFormat = regexp.MustCompilePOSIX("[a-z0-9]+")
FunctionKey = "function/func/"
OwnerKey = "function/owner/"
ReservationKey = "function/reservation/"
)
type Function struct{}