[Experimental] Start a feature consumption server locally on a given port.
(ctx: click.Context, port: int)
| 170 | ) |
| 171 | @click.pass_context |
| 172 | def serve_transformations_command(ctx: click.Context, port: int): |
| 173 | """[Experimental] Start a feature consumption server locally on a given port.""" |
| 174 | store = create_feature_store(ctx) |
| 175 | |
| 176 | store.serve_transformations(port) |
| 177 | |
| 178 | |
| 179 | @click.command("serve_registry") |
nothing calls this directly
no test coverage detected