Files
magistrala/uuid.go
T
Dušan Borovčanin 178aa46ad4 SMQ-2533 - Rename Magistrala to SuperMQ (#2560)
Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com>
2024-12-04 11:17:09 +01:00

11 lines
250 B
Go

// Copyright (c) Abstract Machines
// SPDX-License-Identifier: Apache-2.0
package supermq
// IDProvider specifies an API for generating unique identifiers.
type IDProvider interface {
// ID generates the unique identifier.
ID() (string, error)
}