Files
gosqldump/internal/app/meta.go
Aaron Guise 2f43e96904
All checks were successful
CI / build (push) Successful in 2m59s
feat: Project Started 🎉
2024-08-30 12:21:09 +12:00

16 lines
335 B
Go

package app
// Version is the version of the application
const Version = "0.0.1"
const (
// App is the name of the application
Name = "gosqldump"
// DescriptionShort short description of the app
DescriptionShort = Name + " description"
// DescriptionLong long description of the app
DescriptionLong = Name + " v" + Version
)