Move backend into bin folder
This commit is contained in:
parent
5d66c5e661
commit
8acd594262
2 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -25,6 +25,6 @@ class Plugin:
|
||||||
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
|
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
|
||||||
async def _main(self):
|
async def _main(self):
|
||||||
# startup
|
# startup
|
||||||
self.backend_proc = subprocess.Popen([PARENT_DIR + "/backend"])
|
self.backend_proc = subprocess.Popen([PARENT_DIR + "/bin/backend"])
|
||||||
while True:
|
while True:
|
||||||
asyncio.sleep(1)
|
asyncio.sleep(1)
|
||||||
|
|
Loading…
Reference in a new issue