Added 3cx sms-mms upgrader.
This commit is contained in:
parent
e2fde10d83
commit
01b2299472
4 changed files with 78 additions and 1 deletions
3
app.py
3
app.py
|
|
@ -1,5 +1,5 @@
|
|||
from flask import Flask
|
||||
from routes import yeastar, voipms
|
||||
from routes import yeastar, voipms, threecx
|
||||
import logging
|
||||
import sys
|
||||
|
||||
|
|
@ -12,6 +12,7 @@ app = Flask(__name__)
|
|||
# Register blueprints
|
||||
app.register_blueprint(yeastar.bp)
|
||||
app.register_blueprint(voipms.bp)
|
||||
app.register_blueprint(threecx.bp)
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(host='0.0.0.0', port=5000)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue