diff options
author | Gibheer <gibheer@gmail.com> | 2015-07-24 12:44:43 +0200 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2015-07-24 12:44:43 +0200 |
commit | ebdfe46386d7d9b9f34fb77ac193d20a967bb83d (patch) | |
tree | d1259e42a8aaba4e051c13a962abad806472ea6b | |
parent | 2aa1793bb55741adf2e59a9cc42186bf5eb644b5 (diff) |
the documentation has to go above the package
This makes the documentation in the main.go readable on the godoc.org
website and through the godoc command.
-rw-r--r-- | command.go | 3 | ||||
-rw-r--r-- | main.go | 3 |
2 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,7 @@ -// Handler to make management of subcommands easier. package main +// Handler to make management of subcommands easier. + import ( "flag" "fmt" @@ -1,8 +1,7 @@ -package main - // This package builds a binary which helps to generate // private keys, public keys, certificates and also // includes functionality to sign and verify messages. +package main import ( "crypto" |