From b4dd4cebfd21c0a608802631b762fe680d12ded8 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Wed, 30 Dec 2020 15:17:48 -0500 Subject: [PATCH] Expose the integrations through the library so they can be used outside this project. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 9299281..c8d9d72 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,5 @@ extern crate nom; +pub mod integrations; pub mod parser; pub mod renderer;