From 96957d50cf0b116b9abc2d0bac607a433e42d91f Mon Sep 17 00:00:00 2001 From: Jono Wenger <jono@elixxir.io> Date: Mon, 2 May 2022 13:39:23 -0700 Subject: [PATCH] Remove services from group chat interface that were added by mistake --- groupChat/group.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/groupChat/group.go b/groupChat/group.go index c9c408e0d..8878a62cd 100644 --- a/groupChat/group.go +++ b/groupChat/group.go @@ -20,7 +20,6 @@ package groupChat import ( - "gitlab.com/elixxir/client/cmix/message" gs "gitlab.com/elixxir/client/groupChat/groupStore" "gitlab.com/xx_network/primitives/id" "time" @@ -64,15 +63,6 @@ type GroupChat interface { // NumGroups returns the number of groups the user is a part of. NumGroups() int - - /* ===== Services ======================================================= */ - - // AddService adds a service for all group chat partners of the given tag, - // which will call back on the given processor. - AddService(tag string, processor message.Processor) error - - // RemoveService removes all services for the given tag. - RemoveService(tag string) error } // RequestCallback is called when a GroupChat request is received. -- GitLab