// Copyright © 2022 Roberto Hidalgo // SPDX-License-Identifier: Apache-2.0 package constants import ( // Embed requires an import so the compiler knows what's up. Golint requires a comment. Gotta please em both. _ "embed" ) const HelpCommandName = "help" //go:embed help.md var HelpTemplate string