From e3b0b9191281096bb052c0aa521caec172b4e80b Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Mon, 1 Feb 2021 21:33:03 -0800 Subject: [PATCH] Don't tempt people with this public interface --- server/manager.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/server/manager.go b/server/manager.go index 6f8d4fa..42cbaf9 100644 --- a/server/manager.go +++ b/server/manager.go @@ -46,12 +46,6 @@ 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) {