File size: 179 Bytes
8efce19
2d5e80c
8efce19
0a9e54c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import subprocess

subprocess.run(["python3", "./cron_processor.py"])

from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def greet_json():
    return {"Hello": "World!"}