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

extern crate jemallocator;

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

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

fn main() {}