forked from TrueCloudLab/frostfs-sdk-go
3d0df0d068
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
16 lines
265 B
Go
16 lines
265 B
Go
package subnetidtest
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
subnetid "github.com/nspcc-dev/neofs-sdk-go/subnet/id"
|
|
)
|
|
|
|
// ID generates and returns random subnetid.ID using math/rand.Uint32.
|
|
func ID() *subnetid.ID {
|
|
var id subnetid.ID
|
|
|
|
id.SetNumber(rand.Uint32())
|
|
|
|
return &id
|
|
}
|