From 8fcd39a3b08f956edc0939c87b089b4dbb60afd6 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 1 Apr 2018 14:25:10 +0200 Subject: main: add "-fsck" flag The fsck operation is not yet implemented, this commits just adds the flag and improves cli flag handling. --- fsck.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 fsck.go (limited to 'fsck.go') 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") +} -- cgit v1.2.3