diff --git a/pkg/rove/rove.go b/pkg/rove/rove.go new file mode 100644 index 0000000..dae5c9c --- /dev/null +++ b/pkg/rove/rove.go @@ -0,0 +1,20 @@ +package rove + +type Connection struct { + address string +} + +func NewConnection(address string) *Connection { + return &Connection{ + address: address, + } +} + +// ServerStatus is a struct that contains information on the status of the server +type ServerStatus struct { + Ready bool `json:"ready"` +} + +func (c *Connection) Status() ServerStatus { + return ServerStatus{} +}