Add project URL to banner output

This commit is contained in:
Jeffrey Paul 2025-12-17 15:29:58 -08:00
parent 9dbdcbde91
commit b3fe38092b

View File

@ -45,6 +45,7 @@ func (mfa *CLIApp) printBanner() {
if log.GetLevel() <= log.InfoLevel {
_, _ = fmt.Fprintln(mfa.Stdout, banner)
_, _ = fmt.Fprintf(mfa.Stdout, " mfer by @sneak: v%s released %s\n", mfer.Version, mfer.ReleaseDate)
_, _ = fmt.Fprintln(mfa.Stdout, " https://sneak.berlin/go/mfer")
}
}