From a6acdd0ad10df00583c8efd0a4d94924a4fd0386 Mon Sep 17 00:00:00 2001 From: Daniel Ponte Date: Sun, 4 Aug 2024 23:57:20 -0400 Subject: [PATCH] clean client --- pkg/gordio/nexus/client.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/gordio/nexus/client.go b/pkg/gordio/nexus/client.go index f79949b..ec18050 100644 --- a/pkg/gordio/nexus/client.go +++ b/pkg/gordio/nexus/client.go @@ -15,7 +15,6 @@ type Client interface { Connection - Conn() Connection HandleCommand(*pb.Command) HandleMessage([]byte) } @@ -44,14 +43,6 @@ func (n *Nexus) NewClient(conn Connection) Client { return sess } -func (c *client) Registry() Registry { - return c.nexus -} - -func (c *client) Conn() Connection { - return c.Connection -} - func (c *client) HandleMessage(mesgBytes []byte) { var msg pb.Command err := proto.Unmarshal(mesgBytes, &msg)