mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-26 13:48:53 +08:00
8 lines
177 B
Go
8 lines
177 B
Go
package things
|
|
|
|
// IdentityProvider specifies an API for generating unique identifiers.
|
|
type IdentityProvider interface {
|
|
// ID generates the unique identifier.
|
|
ID() string
|
|
}
|