8 lines
170 B
Go
8 lines
170 B
Go
package sonyflake
|
|
|
|
const DefaultSonyFlakeStartTime = "2023-01-01"
|
|
|
|
type Config struct {
|
|
StartTime string `comment:"sonyFlake 起始生成时间 (格式: 2023-01-01)"`
|
|
}
|