mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 03:03:40 +00:00
6 lines
83 B
Go
6 lines
83 B
Go
package service
|
|
|
|
type IDGenerator interface {
|
|
Generate() (id string, err error)
|
|
}
|