6 lines
79 B
Go
6 lines
79 B
Go
|
package snowflake_interf
|
||
|
|
||
|
type InterfaceSnowFlake interface {
|
||
|
GetId() int64
|
||
|
}
|