WebHost: Move module into WebHostLib to prevent shadowing WebHost.py

This commit is contained in:
Berserker66
2020-07-11 16:59:37 +02:00
parent b06f528f72
commit cdee9e5a3a
18 changed files with 10 additions and 10 deletions

View File

@@ -2,11 +2,11 @@ import os
import multiprocessing
import logging
from WebHost import app as raw_app
from WebHostLib import app as raw_app
from waitress import serve
from WebHost.models import db
from WebHost.autolauncher import autohost
from WebHostLib.models import db
from WebHostLib.autolauncher import autohost
configpath = "config.yaml"