hibiscus/internal/config/info.go
2024-10-21 16:46:25 +03:00

12 lines
No EOL
209 B
Go

package config
type AppInfo struct {
Version string
SourceLink string
}
// Info contains app information.
var Info = AppInfo{
Version: "2.0.0",
SourceLink: "https://git.a71.su/Andrew71/hibiscus",
}