mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 19:25:16 +00:00
* branch and region support * . * . * . * . * fix functions * . * break loop * update example * update examples
17 lines
288 B
Go
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{}
|