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