summaryrefslogtreecommitdiff
path: root/structs.go
blob: 8c8caed989c79e9fa1fdc8c1b9d619d9dfa7f60d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import "github.com/digitalocean/go-qemu/hypervisor"

var me *Virtigod

// this app's variables
type Virtigod struct {
	Hostname string
	dirs     []string
	hv       *hypervisor.Hypervisor
}