mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
8 lines
185 B
Go
8 lines
185 B
Go
package collect
|
|
|
|
type DatabaseConnection struct {
|
|
IsConnected bool `json:"isConnected"`
|
|
Error string `json:"error,omitempty"`
|
|
Version string `json:"version,omitempty"`
|
|
}
|