aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 103bc6596bdeac488f86bf2aef1bdb12b87d8e12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(test)]

extern crate jemallocator;

#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;

mod constants;
mod handshake;
mod router;
mod types;
mod wireguard;

fn main() {}