16 lines
329 B
Go
16 lines
329 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 = "app"
|
|
|
|
// DescriptionShort short description of the app
|
|
DescriptionShort = Name + " description"
|
|
|
|
// DescriptionLong long description of the app
|
|
DescriptionLong = Name + " v" + Version
|
|
)
|