notegraf_web/lib.rs
1#[macro_use]
2extern crate tracing;
3#[macro_use]
4extern crate lazy_static;
5
6pub mod configuration;
7pub mod routes;
8pub mod startup;
9pub mod telemetry;
10
11#[cfg(feature = "notetype_plain")]
12pub type NoteType = notegraf::PlainNote;
13#[cfg(feature = "notetype_markdown")]
14pub type NoteType = notegraf::MarkdownNote;