summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-03-08 10:34:18 +0200
committerLars Wirzenius <liw@liw.fi>2020-03-08 11:42:05 +0200
commite882d339e46d736276bf04660c614f85489547cd (patch)
treefab398cb47a977ac0eade9208ea684805d7d266b /src/lib.rs
parentbbdaa17e728c4cec353d17dfc0eb041659618ecd (diff)
downloadsubplot-e882d339e46d736276bf04660c614f85489547cd.tar.gz
Refactor: add a GraphMarkup trait, use for dot and plantuml
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7064a8c..64a2aff 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -9,6 +9,9 @@ mod error;
pub use error::Error;
pub use error::Result;
+mod graphmarkup;
+pub use graphmarkup::{DotMarkup, GraphMarkup, PlantumlMarkup};
+
mod ast;
pub use ast::Document;