8 lines
88 B
Go
8 lines
88 B
Go
|
package contract
|
||
|
|
||
|
const IDKey = "hade:id"
|
||
|
|
||
|
type IDService interface {
|
||
|
NewID() string
|
||
|
}
|