diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-03 22:40:07 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-03 22:40:07 -0700 |
commit | eac91498f9d53248d87cb7244fb61aa906e120b1 (patch) | |
tree | ec07ea806390b286f1c4e1d6896edb5326c154eb /continuedev/src/continuedev/server | |
parent | ce36d1e516e4cec7adfb8407cb50d7a5589be081 (diff) | |
download | sncontinue-eac91498f9d53248d87cb7244fb61aa906e120b1.tar.gz sncontinue-eac91498f9d53248d87cb7244fb61aa906e120b1.tar.bz2 sncontinue-eac91498f9d53248d87cb7244fb61aa906e120b1.zip |
fixes, better messaging
Diffstat (limited to 'continuedev/src/continuedev/server')
-rw-r--r-- | continuedev/src/continuedev/server/gui_protocol.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/continuedev/src/continuedev/server/gui_protocol.py b/continuedev/src/continuedev/server/gui_protocol.py index 66839d9b..9766fcd0 100644 --- a/continuedev/src/continuedev/server/gui_protocol.py +++ b/continuedev/src/continuedev/server/gui_protocol.py @@ -28,10 +28,6 @@ class AbstractGUIProtocolServer(ABC): """Send a state update to the client""" @abstractmethod - async def send_available_slash_commands(self, commands: List[Dict]): - """Send a list of available slash commands to the client""" - - @abstractmethod def on_retry_at_index(self, index: int): """Called when the user requests a retry at a previous index""" |