The following should work, but instead `mk_app` complains about duplicate name "<lambda>". ```python from http2py import mk_app handlers = [ dict( endpoint=lambda x, y: x + y, name='add' ), dict( endpoint=lambda x, y: x * y, name='multiply' ), ] mk_app(handlers) ``` See: * [Refactoring py2http to use the chain-of-interpreters design.](https://github.com/i2mint/py2http/discussions/11) * [comment below](https://github.com/i2mint/py2http/issues/10#issuecomment-1825557481)