This commit is contained in:
shoopea
2021-10-16 21:39:54 +08:00
parent 6c3cd690de
commit 9eb8cee7d8
5 changed files with 980 additions and 541 deletions

20
snapshot.go Normal file
View File

@@ -0,0 +1,20 @@
package main
import "strings"
type Snapshot string
func (s Snapshot) Path() string {
s2 := strings.Split(string(s), `@`)
return s2[0]
}
func (s Snapshot) Name() string {
s2 := strings.Split(string(s), `@`)
return s2[1]
}
func (s Snapshot) Append(path string) Snapshot {
s2 := strings.Split(string(s), `@`)
return Snapshot(s2[0] + "/" + path + "@" + s2[1])
}