Initial commit

This commit is contained in:
2024-08-30 11:25:28 +12:00
commit 0cd89c0707
31 changed files with 1470 additions and 0 deletions

15
internal/app/meta.go Normal file
View File

@@ -0,0 +1,15 @@
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
)