mirror of
https://github.com/usememos/memos.git
synced 2024-11-14 18:59:53 +08:00
7 lines
120 B
Go
7 lines
120 B
Go
package util
|
|
|
|
import "regexp"
|
|
|
|
var (
|
|
UIDMatcher = regexp.MustCompile("^[a-zA-Z0-9]([a-zA-Z0-9-]{1,30}[a-zA-Z0-9])$")
|
|
)
|