chinampa/internal/constants/constants.go

17 lines
464 B
Go
Raw Normal View History

2022-12-19 03:04:34 +00:00
// Copyright © 2022 Roberto Hidalgo <chinampa@un.rob.mx>
2022-12-31 05:53:24 +00:00
// SPDX-License-Identifier: Apache-2.0
2022-12-19 03:04:34 +00:00
package constants
import (
// Embed requires an import so the compiler knows what's up. Golint requires a comment. Gotta please em both.
_ "embed"
)
2023-03-24 01:51:36 +00:00
// HelpCommandName sets the name for the command that offers help.
2022-12-19 03:04:34 +00:00
const HelpCommandName = "help"
2023-03-24 01:51:36 +00:00
// HelpTemplate is the markdown template to use when rendering help.
//
2022-12-19 03:04:34 +00:00
//go:embed help.md
2022-12-31 05:53:24 +00:00
var HelpTemplate string