go-pingbot/config/constant.go
Medzik 018a2e9b90 feat(uptime): Add uptime to status and build date
- Moved type.go to types.go
- Added build date
- Removed linter from gitpod Dockerfile (now is in gitpod image)
- Added mongodb Database and Collection to config file (now isn't used [TODO])
- Added uptime to status
2021-08-01 15:48:24 +00:00

12 lines
136 B
Go

package config
import "time"
const GH_Repo = "MedzikUser/go-pingbot"
var (
Version = "dev"
Build = ""
StartTime time.Time
)