Files
chain33-dtalk/service/auth/model/const.go
2022-03-17 15:59:24 +08:00

11 lines
178 B
Go

package model
import "time"
const (
Chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
Hex = "0123456789abcdef"
Length = 64
Timeout = 20 * time.Second
)