vimwiki-server 0.1.0

Daemon that supports parsing and modifying vimwiki files.
1
2
3
4
5
6
7
8
9
mod misc;
mod obj;

pub use misc::MiscQuery;
pub use obj::ObjQuery;

/// Represents the query-portion of the GraphQL schema
#[derive(async_graphql::MergedObject, Default)]
pub struct Query(ObjQuery, MiscQuery);