7 lines
127 B
Go
7 lines
127 B
Go
|
package nanoid
|
||
|
|
||
|
type Config struct {
|
||
|
Sequence string `comment:"字符序列"`
|
||
|
Length int `comment:"生成 id 长度"`
|
||
|
}
|