go-pingbot/database/mongo/types.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

9 lines
131 B
Go

package mongo
type URL struct {
URL string `bson:"_id"`
Cluster int `bson:"cluster"`
}
type json map[string]interface{}