summaryrefslogtreecommitdiff
path: root/exes/webhook/src/main.rs
blob: bbacda7b8ccf85f175e0a99320d83e7ceea3e23a (plain)
1
2
3
4
5
6
7
8
9
10
11
use leash::ignite;
use webhook::WebhookServer;

#[cfg(not(target_os = "windows"))]
use tikv_jemallocator::Jemalloc;

#[cfg(not(target_os = "windows"))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;

ignite!(WebhookServer);