mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2024-12-13 18:11:25 +01:00
472718c9a3
for tests and modifying network device manipulation
18 lines
333 B
Go
18 lines
333 B
Go
package lib
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
// IdGenerator generates unique ids
|
|
type IdGenerator interface {
|
|
// GetId generates a unique ID or an error if something went wrong
|
|
GetId() (string, error)
|
|
}
|
|
|
|
type UUIDGenerator struct {
|
|
}
|
|
|
|
func (g *UUIDGenerator) GetId() (string, error) {
|
|
id := uuid.New()
|
|
return id.String(), nil
|
|
}
|