mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-03 23:01:48 +00:00
Add inventory plugins for buildah and podman, unit tests and functional CI tests. --------- Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
13 lines
228 B
Python
13 lines
228 B
Python
from flask import Flask, jsonify
|
|
import random
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.get("/predict")
|
|
def predict():
|
|
return jsonify({"prediction": random.random()})
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host="0.0.0.0", port=5000)
|
|
|
|
|