Added 3cx sms-mms upgrader.

This commit is contained in:
edschuy95 2025-07-15 07:32:47 -04:00
parent e2fde10d83
commit 01b2299472
4 changed files with 78 additions and 1 deletions

3
app.py
View file

@ -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)