diff --git a/src/node/mod.rs b/src/node/mod.rs index d7e3a06..5450f93 100644 --- a/src/node/mod.rs +++ b/src/node/mod.rs @@ -12,3 +12,4 @@ use crate::event::types::Slice; pub(crate) mod error; mod graph; mod nodes; +mod visitor; diff --git a/src/node/visitor/mod.rs b/src/node/visitor/mod.rs new file mode 100644 index 0000000..f2abaa8 --- /dev/null +++ b/src/node/visitor/mod.rs @@ -0,0 +1,5 @@ +/* + * This Source Code Form is subject to the terms of the + * Mozilla Public License, v. 2.0. If a copy of the MPL + * was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. + */