aboutsummaryrefslogtreecommitdiff
path: root/fsck.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-04-01 14:25:10 +0200
committerJakob Unterwurzacher2018-04-01 14:25:10 +0200
commit8fcd39a3b08f956edc0939c87b089b4dbb60afd6 (patch)
tree5c248ef6d83c19e6b70c53e34c049ac7182a6807 /fsck.go
parent85056def909c994b66c40763f6d6c2d41c7a61d0 (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.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/fsck.go b/fsck.go
new file mode 100644
index 0000000..645cf91
--- /dev/null
+++ b/fsck.go
@@ -0,0 +1,9 @@
+package main
+
+import (
+ "log"
+)
+
+func fsck(args *argContainer) {
+ log.Panic("Not yet implemented")
+}