Files
gosqldump/internal/app/meta.go

16 lines
329 B
Go
Raw Normal View History

2024-08-30 11:25:28 +12:00
package app
// Version is the version of the application
const Version = "0.0.1"
const (
// App is the name of the application
Name = "app"
// DescriptionShort short description of the app
DescriptionShort = Name + " description"
// DescriptionLong long description of the app
DescriptionLong = Name + " v" + Version
)