This repository has been archived on 2025-11-25. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
combluotion-old/config/version.go

10 lines
338 B
Go
Raw Normal View History

2024-09-14 16:53:53 -05:00
package config
const (
2024-10-28 13:48:22 -05:00
AppName string = "combluotion"
2024-09-14 16:53:53 -05:00
Version string = "0.0.1"
2024-10-28 13:48:22 -05:00
Url string = "https://codeberg.org/danjones000/combluotion"
2024-09-14 16:53:53 -05:00
DevUrl string = "https://codeberg.org/danjones000"
Email string = "danjones@goodevilgenius.org"
UserAgent string = AppName + "/" + Version + " (" + Url + "; " + Email + ")"
)