Documentation
¶
Overview ¶
Package constants provides application-wide constant values for the gitbak application.
This package centralizes constant values that are used throughout the application, making them easy to maintain and update. It includes visual elements like ASCII art, as well as other fixed values that define the application's behavior and appearance.
Core Components ¶
- Logo: ASCII art representation of the gitbak logo
- Tagline: The application's tagline/motto
Usage ¶
The constants in this package can be imported and used directly:
import "github.com/bashhack/gitbak/pkg/constants" func displayLogo() { fmt.Println(constants.Logo) fmt.Println(constants.Tagline) }
Index ¶
Constants ¶
const Logo = `` /* 3239-byte string literal not displayed */
Logo is the ASCII art logo for gitbak. This logo is displayed when the application is run with the --logo flag.
const Tagline = "Automatic Commit Safety Net"
Tagline is the gitbak tagline displayed under the logo. The tagline is centered beneath the ASCII art logo when displayed.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.