From 8acd59426297541de5621b3f8621b0ae166cef6b Mon Sep 17 00:00:00 2001 From: "NGnius (Graham)" Date: Mon, 18 Jul 2022 17:31:08 -0400 Subject: [PATCH] Move backend into bin folder --- backend => bin/backend | Bin main.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename backend => bin/backend (100%) diff --git a/backend b/bin/backend similarity index 100% rename from backend rename to bin/backend diff --git a/main.py b/main.py index 264af5d..be3e974 100644 --- a/main.py +++ b/main.py @@ -25,6 +25,6 @@ class Plugin: # Asyncio-compatible long-running code, executed in a task when the plugin is loaded async def _main(self): # startup - self.backend_proc = subprocess.Popen([PARENT_DIR + "/backend"]) + self.backend_proc = subprocess.Popen([PARENT_DIR + "/bin/backend"]) while True: asyncio.sleep(1)