An OpenAPI alternative to describe REST APIs for type-safe code generation.
Specification Editor GeneratorThe server code is based on FastAPI. The generated code contains the controller and model classes which are described at the specification. You only need to copy and paste the generated code into your source folder. A simple controller would look like:
app = FastAPI()
@app.get("/hello/world", status_code=200)
async def getMessage():
# @TODO implement method
pass