From 254a4d6d439a1b13a90d063d5b9a82e57ce7d144 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sun, 5 Sep 2021 00:19:20 +0200 Subject: [PATCH] docs: document main package --- cmd/abra/main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmd/abra/main.go b/cmd/abra/main.go index 0421bd2b..1f427c8f 100644 --- a/cmd/abra/main.go +++ b/cmd/abra/main.go @@ -1,10 +1,14 @@ +// Package main provides the command-line entrypoint. package main import ( "coopcloud.tech/abra/cli" ) +// Version is the current version of abra. var Version string + +// Commit is the current commit of abra. var Commit string func main() { @@ -17,5 +21,4 @@ func main() { } cli.RunApp(Version, Commit) - }