aboutsummaryrefslogtreecommitdiff
path: root/src/diplonat.rs
blob: 44f6ac5e73f1567a4347b2f5a671fa4306db91d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use igd::Gateway;

use crate::*;

pub struct DiplonatContext {
  pub config: config::DiplonatConfig,
  //pub gateway: igd::Gateway
}

pub fn setup() -> Result<DiplonatContext, String> {
  return Ok(DiplonatContext {
    config: config::load_env()?,
    //gateway: search_gateway(Default::default()).await
  });
}

pub fn dloop() -> bool {
  return true;
}