linera-service 0.3.0

Executable for clients (aka CLI wallets), proxy (aka validator frontend) and servers of the Linera protocol.
Documentation
use linera_sdk::base::{ContractAbi, ServiceAbi};

pub struct ApplicationAbi;

impl ContractAbi for ApplicationAbi {
    type Parameters = ();
    type InitializationArgument = ();
    type Operation = ();
    type Message = ();
    type ApplicationCall = ();
    type SessionCall = ();
    type SessionState = ();
    type Response = ();
}

impl ServiceAbi for ApplicationAbi {
    type Parameters = ();
    type Query = ();
    type QueryResponse = ();
}