Further drafting of rpc module.

Also: fix typo in model definitions.
This commit is contained in:
Christian Schwarz
2017-04-15 18:31:14 +02:00
parent 32f07c51c7
commit c1aed10e8b
3 changed files with 183 additions and 47 deletions
+5 -5
View File
@@ -1,14 +1,14 @@
package model
type Filesytem struct {
type Filesystem struct {
Name string
Children []Filesytem
Children []Filesystem
Snapshots []Snapshot
}
type FilesytemMapping struct {
From Filesytem
To Filesytem
From Filesystem
To Filesystem
}
type Snapshot struct {
@@ -16,7 +16,7 @@ type Snapshot struct {
}
type Pool struct {
Root Filesytem
Root Filesystem
}
type SSHTransport struct {