-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtart.go
48 lines (38 loc) · 995 Bytes
/
tart.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package provider
import (
plugincore "github.com/hashicorp/vagrant-plugin-sdk/core"
)
type TartProvider struct {
}
func (t TartProvider) Capability(name string, args ...interface{}) (interface{}, error) {
//TODO implement me
panic("implement me")
}
func (t TartProvider) HasCapability(name string) (bool, error) {
//TODO implement me
panic("implement me")
}
func (t TartProvider) Usable() (bool, error) {
//TODO implement me
panic("implement me")
}
func (t TartProvider) Installed() (bool, error) {
//TODO implement me
panic("implement me")
}
func (t TartProvider) Action(name string, args ...interface{}) error {
//TODO implement me
panic("implement me")
}
func (t TartProvider) MachineIdChanged() error {
//TODO implement me
panic("implement me")
}
func (t TartProvider) SshInfo() (*plugincore.SshInfo, error) {
//TODO implement me
panic("implement me")
}
func (t TartProvider) State() (*plugincore.MachineState, error) {
//TODO implement me
panic("implement me")
}