summaryrefslogtreecommitdiff
path: root/structs.go
blob: 6d668e3703560ea8f8dd61db6dc1d8857a1f84ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main

import (
	"github.com/digitalocean/go-qemu/hypervisor"
	"go.wit.com/dev/alexflint/arg"
	"go.wit.com/lib/fhelp"
)

var me *Virtigod

// this app's variables
type Virtigod struct {
	pp       *arg.Parser    // for parsing the command line args.  Yay to alexf lint!
	myGui    *fhelp.GuiPrep // for initializing the GUI toolkits
	Hostname string
	dirs     []string
	hv       *hypervisor.Hypervisor
}