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