Files
zrepl_patched/model/model.go
T
Christian Schwarz 5e15a22cab Make model compile.
2017-04-15 15:43:28 +02:00

29 lines
370 B
Go

package model
type Filesytem struct {
Name string
Children []Filesytem
Snapshots []Snapshot
}
type FilesytemMapping struct {
From Filesytem
To Filesytem
}
type Snapshot struct {
Name string
}
type Pool struct {
Root Filesytem
}
type SSHTransport struct {
Host string
User string
Port uint16
TransportOpenCommand []string
Options []string
}