15 lines
214 B
Go
15 lines
214 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"go.wit.com/lib/protobuf/virtbuf"
|
||
|
)
|
||
|
|
||
|
var me Virtigod
|
||
|
|
||
|
// this app's variables
|
||
|
type Virtigod struct {
|
||
|
cluster *virtbuf.Cluster
|
||
|
// droplets *virtbuf.Droplets
|
||
|
// events *virtbuf.Events
|
||
|
}
|