memos/internal/util/resource_name.go

8 lines
120 B
Go
Raw Normal View History

2024-01-20 23:48:35 +08:00
package util
import "regexp"
var (
2024-03-20 20:39:16 +08:00
UIDMatcher = regexp.MustCompile("^[a-zA-Z0-9]([a-zA-Z0-9-]{1,30}[a-zA-Z0-9])$")
2024-01-20 23:48:35 +08:00
)