summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-04-22 11:58:15 +0300
committerLars Wirzenius <liw@liw.fi>2020-04-22 11:58:15 +0300
commit072b547737703066b383c8c338726c95c4b3591e (patch)
tree745cc70659c9fc363ff443a4ed0a6326c7cfd177 /src/lib.rs
parent29770c165b7e25b4671760495298540c36f25c38 (diff)
downloadsubplot-072b547737703066b383c8c338726c95c4b3591e.tar.gz
Refactor: move code generation logic to src/codegen.rs
This lets sp-codegen.rs be only about the command line parsing etc.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e39a240..75e78c9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -38,4 +38,4 @@ mod templatespec;
pub use templatespec::TemplateSpec;
mod codegen;
-pub use codegen::*;
+pub use codegen::{generate_test_program, template_spec};