diplonat/src/diplonat.rs

23 lines
440 B
Rust
Raw Normal View History

2020-05-09 14:19:09 +00:00
use anyhow::{Result, Context};
use crate::*;
2020-05-09 14:50:38 +00:00
pub struct Diplonat {
pub config: config::DiplonatConfig,
2020-05-09 14:27:54 +00:00
pub gateway: igd::aio::Gateway
}
2020-05-09 14:50:38 +00:00
impl Diplonat {
pub async fn new() -> Result<Self> {
let ctx = Self {
config: config::load_env().context("Unable to read configuration from environment")?,
gateway: gw::get_gateway().await?
};
2020-05-09 14:27:54 +00:00
2020-05-09 14:50:38 +00:00
return Ok(ctx);
}
2020-05-09 14:50:38 +00:00
pub fn listen(&self) -> bool {
return true;
}
}