You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
321 B
20 lines
321 B
package shell
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed volume.list.txt
|
|
var topoData string
|
|
|
|
//go:embed volume.list2.txt
|
|
var topoData2 string
|
|
|
|
//go:embed volume.ecshards.txt
|
|
var topoDataEc string
|
|
|
|
var (
|
|
testTopology1 = parseOutput(topoData)
|
|
testTopology2 = parseOutput(topoData2)
|
|
testTopologyEc = parseOutput(topoDataEc)
|
|
)
|