7 lines
103 B
Go
Raw Normal View History

2024-10-14 13:49:16 +08:00
package snowflake_interf
type InterfaceSnowFlake interface {
GetId() int64
GetIdAsString() string
2024-10-14 13:49:16 +08:00
}