Add config and basic architecture for QUIC

This commit is contained in:
Valère Plantevin
2026-05-04 16:13:40 -04:00
parent 42ab81899c
commit 4ec5b98df4
15 changed files with 246 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
use tokio::sync::mpsc::Sender;
use crate::transport::QuicMessage;
pub async fn run_substrate_server(t1_tx: Sender<QuicMessage>,
t2_tx: Sender<QuicMessage>,
t3_tx: Sender<QuicMessage>) {
}