| 12345678910111213 | from clean_python import InMemoryGatewayfrom clean_python.fastapi import Servicefrom .presentation import V1Booksservice = Service(V1Books())app = service.create_app(    title="Book service",    description="Service for testing clean-python",    hostname="testserver",    access_logger_gateway=InMemoryGateway([]),)
 |