libgocryptfs/fsck.go
Jakob Unterwurzacher 8fcd39a3b0 main: add "-fsck" flag
The fsck operation is not yet implemented, this commits
just adds the flag and improves cli flag handling.
2018-04-01 14:25:10 +02:00

10 lines
101 B
Go

package main
import (
"log"
)
func fsck(args *argContainer) {
log.Panic("Not yet implemented")
}