mirror of
https://github.com/usememos/memos.git
synced 2024-11-15 11:17:58 +08:00
8 lines
129 B
Go
8 lines
129 B
Go
|
package util
|
||
|
|
||
|
import "regexp"
|
||
|
|
||
|
var (
|
||
|
ResourceNameMatcher = regexp.MustCompile("^[a-zA-Z0-9]([a-zA-Z0-9-]{1,30}[a-zA-Z0-9])$")
|
||
|
)
|