28cd7fe577
Update dependency paths to new trx-backend and trx-frontend locations. Replace trx-bin references with trx-server/trx-client. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
20 lines
436 B
Markdown
20 lines
436 B
Markdown
# trx-plugin-example
|
|
|
|
This is a minimal shared-library plugin that registers a backend and frontend.
|
|
The backend is a stub that returns an error; the frontend is a no-op spawner.
|
|
|
|
Build:
|
|
|
|
```bash
|
|
cargo build -p trx-plugin-example --release
|
|
```
|
|
|
|
Install (example):
|
|
|
|
```bash
|
|
mkdir -p plugins
|
|
cp target/release/libtrx_plugin_example.* plugins/
|
|
```
|
|
|
|
Run `trx-server` or `trx-client` with `TRX_PLUGIN_DIRS=./plugins` to discover the plugin.
|