docs: document main package

This commit is contained in:
decentral1se 2021-09-05 00:19:20 +02:00
parent fb75567729
commit 254a4d6d43
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 4 additions and 1 deletions

View File

@ -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)
}