Files
troubleshoot/pkg/collect/database_shared.go
2020-03-20 07:19:03 -07:00

8 lines
165 B
Go

package collect
type DatabaseConnection struct {
IsConnected bool `json:"isConnected"`
Error string `json:"error"`
Version string `json:"version"`
}