Browse Source

Update 'wsgi.py'

Added hooks_path variable from config.
deadtom 1 week ago
parent
commit
2b9e090d18
1 changed files with 2 additions and 1 deletions
  1. 2 1
      wsgi.py

+ 2 - 1
wsgi.py

@@ -1,5 +1,6 @@
 import sys
+import config
 
-sys.path.insert(0, "~/owncasthooks")
+sys.path.insert(0, config.hooks_path)
 
 from hooks import app as application