gitea-github-sync/bridge/__init__.py

11 lines
282 B
Python
Raw Normal View History

2024-10-08 23:34:31 -05:00
from flask import Flask
from flask import request
from flask import redirect
from flask import abort
app = Flask(__name__)
app.config.from_envvar('GIT_BRIDGE_SETTINGS')
@app.route("/bridge")
def index():
return "you've reached the main page for an internal service. congrats!"