Added backend.
All checks were successful
MoreThanText/morethantext/pipeline/head This commit looks good

This commit is contained in:
2025-03-02 10:36:03 -05:00
parent b761791044
commit d824220fab
5 changed files with 88 additions and 62 deletions

View File

@ -1,3 +1,4 @@
mod backend;
mod client;
mod data;
mod error;
@ -468,7 +469,7 @@ impl MoreThanText {
* tx = Queue::start();
* tx.send(Session::start().into()).unwrap();
* Self { tx: tx }
*/
*/
let (tx, rx) = channel();
let mut senders = Vec::new();
senders.push(Client::start(tx.clone()));