mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-04 22:17:59 +08:00
11 lines
251 B
Go
11 lines
251 B
Go
![]() |
// Copyright (c) Mainflux
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package authn
|
||
|
|
||
|
// IdentityProvider specifies an API for generating unique identifiers.
|
||
|
type IdentityProvider interface {
|
||
|
// ID generates the unique identifier.
|
||
|
ID() (string, error)
|
||
|
}
|