2025-01-06 08:00:35 +01:00

6 lines
83 B
Go

package service
type IDGenerator interface {
Generate() (id string, err error)
}