aboutsummaryrefslogtreecommitdiff
path: root/verifysetup/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'verifysetup/main.go')
-rw-r--r--verifysetup/main.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/verifysetup/main.go b/verifysetup/main.go
new file mode 100644
index 0000000..2c1bd69
--- /dev/null
+++ b/verifysetup/main.go
@@ -0,0 +1,13 @@
+package main
+
+import (
+ "github.com/axtloss/fsverify/verifysetup/cmd"
+)
+
+var (
+ Version = "0.1.0"
+)
+
+func main() {
+ cmd.Execute()
+}