Initial commit

This commit is contained in:
2019-08-04 23:47:12 +03:00
commit f1716e1fa2
13 changed files with 623 additions and 0 deletions

10
pkg/core/managemode.go Normal file
View File

@@ -0,0 +1,10 @@
package core
//go:generate stringer -type ManageMode
type ManageMode uint8
const (
Copy ManageMode = iota
Hardlink
)