diff --git a/server/manager.go b/server/manager.go index 42cbaf9..6f8d4fa 100644 --- a/server/manager.go +++ b/server/manager.go @@ -46,6 +46,12 @@ func NewEmptyManager(client remote.Client) *Manager { return &Manager{client: client} } +// Client returns the HTTP client interface that allows interaction with the +// Panel API. +func (m *Manager) Client() remote.Client { + return m.client +} + // Put replaces all of the current values in the collection with the value that // is passed through. func (m *Manager) Put(s []*Server) {