fn0 0.1.0

FaaS platform powered by wasmtime
1
2
3
4
5
6
7
use std::net::IpAddr;

pub mod oci;

pub trait ListNeighbors {
    async fn list_neighbors(&self) -> Result<Vec<IpAddr>, anyhow::Error>;
}