atprotocol 0.0.1

An AT Protocol Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::atprotocol::AtpAgent;

pub struct BlueSkyAgent {
    pub atp_agent: AtpAgent,
}

impl Default for BlueSkyAgent {
    fn default() -> Self {
        Self {
            atp_agent: AtpAgent::new("http://localhost:3000".parse().unwrap()),
        }
    }
}