Refactor transports to construct them specific for each application

Instead of splitting up the transports into capabilities, we compose
them directly for each application. This allows us to remove the
websocket transport for the CLI which is really only needed for the
ASB to allow retrieval of quotes via the browser.
This commit is contained in:
Thomas Eizinger 2021-06-09 12:13:29 +10:00
parent 90deb6451c
commit 8a30ef725c
No known key found for this signature in database
GPG key ID: 651AC83A6C6C8B96
7 changed files with 111 additions and 104 deletions

View file

@ -1,2 +1,3 @@
pub mod command;
pub mod tracing;
pub mod transport;