notegraf-web 0.1.1

The reference web frontend of Notegraf
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
extern crate tracing;
#[macro_use]
extern crate lazy_static;

pub mod configuration;
pub mod routes;
pub mod startup;
pub mod telemetry;

#[cfg(feature = "notetype_plain")]
pub type NoteType = notegraf::PlainNote;
#[cfg(feature = "notetype_markdown")]
pub type NoteType = notegraf::MarkdownNote;