Finish implementation of RPC.

This commit is contained in:
Christian Schwarz
2017-04-16 21:38:31 +02:00
parent c1aed10e8b
commit 4494afe47f
4 changed files with 139 additions and 17 deletions
+1
View File
@@ -2,6 +2,7 @@ package model
type Filesystem struct {
Name string
Parent *Filesystem
Children []Filesystem
Snapshots []Snapshot
}