diff options
author | Jakob Unterwurzacher | 2018-04-01 14:25:10 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-04-01 14:25:10 +0200 |
commit | 8fcd39a3b08f956edc0939c87b089b4dbb60afd6 (patch) | |
tree | 5c248ef6d83c19e6b70c53e34c049ac7182a6807 /fsck.go | |
parent | 85056def909c994b66c40763f6d6c2d41c7a61d0 (diff) |
main: add "-fsck" flag
The fsck operation is not yet implemented, this commits
just adds the flag and improves cli flag handling.
Diffstat (limited to 'fsck.go')
-rw-r--r-- | fsck.go | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +package main + +import ( + "log" +) + +func fsck(args *argContainer) { + log.Panic("Not yet implemented") +} |