diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-05 15:29:21 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-05 15:29:21 +0100 |
commit | f1524db2c9d935daabd3b1557caf54fbdd63dde5 (patch) | |
tree | 04dc65245855f5975ab3002e9749ba666ea1af37 /verifysetup/main.go | |
parent | a215d3358f35e3331b4ce6c7f5a03b4544e04d43 (diff) | |
download | fsverify-f1524db2c9d935daabd3b1557caf54fbdd63dde5.tar.gz fsverify-f1524db2c9d935daabd3b1557caf54fbdd63dde5.tar.bz2 |
verifysetup storage reader
Diffstat (limited to 'verifysetup/main.go')
-rw-r--r-- | verifysetup/main.go | 13 |
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() +} |