mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 03:03:39 +00:00
6 lines
65 B
Go
6 lines
65 B
Go
|
package id
|
||
|
|
||
|
type Generator interface {
|
||
|
Next() (string, error)
|
||
|
}
|