treehouse-bridge/owncast.app.py
Jadowyne Ulve 28e2e4243c Moved to webhooks for discord and added discord
avatars if linked to matter most user id
2025-06-10 18:02:33 -05:00

12 lines
284 B
Python

import flask
import bridges
app = flask.Flask(__name__)
@app.route('/owncast_webhook', methods=['POST'])
async def post_message():
bridges.send_owncast_to_mattermost(flask.request.get_json())
return flask.Response(status=200)
app.run(host="0.0.0.0", port=5002, debug=True)