pipey 0.1.1

A lightweight HTTP-to-WebSocket event delivery service.
Documentation
1
2
3
4
5
6
use pipey::Pipey;

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    Pipey::run_server().await?.await
}