Spaces:
Paused
Paused
File size: 335 Bytes
df3ad52 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from beta.shellLogic.Plugin import Plugin
class HandleWEB(Plugin):
def __init__(self):
super().__init__()
self.add_command("web", "Open the web interface", "web", self.web)
self.register_commands()
def web(self, args):
# Open the web interface
print("Opening the web interface...")
|