List bundles. :return: a list of model schemas.
()
| 107 | |
| 108 | |
| 109 | def list_bundles() -> List[Bundle]: |
| 110 | """ |
| 111 | List bundles. |
| 112 | :return: a list of model schemas. |
| 113 | """ |
| 114 | # todo: add filter |
| 115 | return __bundles |
| 116 | |
| 117 | |
| 118 | def get_bundle(bundle_id: str) -> Optional[Bundle]: |
no outgoing calls
no test coverage detected