14 lines
202 B
Python
14 lines
202 B
Python
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return "contracts-flask OK"
|
|
|
|
|
|
@app.route("/health")
|
|
def health():
|
|
return {"ok": True, "service": "contracts-flask"}
|