summaryrefslogtreecommitdiffstats
path: root/run.py
blob: 07b966f13025f4b8582dceb82aceec0ed181668b (plain) (blame)
1
2
3
4
5
from app import blure
from config import host, port, debug

if __name__ == '__main__':
    blure.go_fast(host=host, port=port, debug=debug)