Model euphoria api

This commit is contained in:
Joscha 2022-06-18 23:42:33 +02:00
parent 03dfe10f3e
commit de7815f653
9 changed files with 702 additions and 1 deletions

12
cove-tui/src/euph.rs Normal file
View file

@ -0,0 +1,12 @@
mod api;
use std::convert::Infallible;
use tokio::sync::{mpsc, oneshot};
enum Request {}
pub struct EuphRoom {
canary: oneshot::Sender<Infallible>,
tx: mpsc::Sender<Request>,
}