30 lines
380 B
GLSL
30 lines
380 B
GLSL
|
|
|
|
struct ZDBSpecs{
|
|
deployment_name string
|
|
nodeid string
|
|
namespace string
|
|
secret string
|
|
}
|
|
|
|
struct ZDBDeployed{
|
|
nodeid string
|
|
namespace string
|
|
secret string
|
|
}
|
|
|
|
|
|
//test zdb is answering
|
|
pub fn (vm ZDBDeployed) ping() bool {
|
|
|
|
}
|
|
|
|
pub fn (vm ZDBDeployed) redisclient() redisclient... {
|
|
|
|
}
|
|
|
|
//only connect to yggdrasil and mycelium
|
|
//
|
|
fn zdb_deploy(args_ ZDBSpecs) ZDBDeployed{
|
|
|
|
} |