(self, msg: str)
| 12 | class Python: |
| 13 | @function |
| 14 | async def echo(self, msg: str) -> str: |
| 15 | return await ( |
| 16 | dag.container().from_("alpine:latest").with_exec(["echo", msg]).stdout() |
| 17 | ) |
| 18 | |
| 19 | @function |
| 20 | async def custom_span(self) -> str: |
no test coverage detected