aboutsummaryrefslogtreecommitdiff
path: root/verifysetup/main.go
diff options
context:
space:
mode:
authoraxtloss <axtlos@getcryst.al>2024-02-05 15:29:21 +0100
committeraxtloss <axtlos@getcryst.al>2024-02-05 15:29:21 +0100
commitf1524db2c9d935daabd3b1557caf54fbdd63dde5 (patch)
tree04dc65245855f5975ab3002e9749ba666ea1af37 /verifysetup/main.go
parenta215d3358f35e3331b4ce6c7f5a03b4544e04d43 (diff)
downloadfsverify-f1524db2c9d935daabd3b1557caf54fbdd63dde5.tar.gz
fsverify-f1524db2c9d935daabd3b1557caf54fbdd63dde5.tar.bz2
verifysetup storage reader
Diffstat (limited to '')
-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()
+}