mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
22 lines
275 B
Go
22 lines
275 B
Go
package model
|
|
|
|
type Filesystem struct {
|
|
Name string
|
|
Parent *Filesystem
|
|
Children []Filesystem
|
|
Snapshots []Snapshot
|
|
}
|
|
|
|
type FilesytemMapping struct {
|
|
From Filesystem
|
|
To Filesystem
|
|
}
|
|
|
|
type Snapshot struct {
|
|
Name string
|
|
}
|
|
|
|
type Pool struct {
|
|
Root Filesystem
|
|
}
|