forked from TrueCloudLab/frostfs-sdk-go
Alex Vanin
94476f9055
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
13 lines
230 B
Go
13 lines
230 B
Go
package subnetidtest
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
subnetid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/subnet/id"
|
|
)
|
|
|
|
// ID generates and returns random subnetid.ID.
|
|
func ID() (x subnetid.ID) {
|
|
x.SetNumeric(rand.Uint32())
|
|
return
|
|
}
|