- include CRUD OpenAPI spec - add in-memory mock data store - implement OpenAPI-bound route handlers - provide runnable FastAPI bootstrap - include end-to-end integration test
9 lines
179 B
Python
9 lines
179 B
Python
from openapi_first.app import OpenAPIFirstApp
|
|
import routes
|
|
|
|
app = OpenAPIFirstApp(
|
|
openapi_path="openapi.yaml",
|
|
routes_module=routes,
|
|
title="CRUD Example Service",
|
|
)
|