mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-13 12:04:45 +00:00
6 lines
65 B
Go
6 lines
65 B
Go
|
|
package id
|
||
|
|
|
||
|
|
type Generator interface {
|
||
|
|
Next() (string, error)
|
||
|
|
}
|