lib/node: create module skeleton
This commit is contained in:
parent
9b3caee7e4
commit
cfb7c7bdbc
|
@ -25,6 +25,7 @@ pub mod error;
|
||||||
pub mod event;
|
pub mod event;
|
||||||
pub mod reader;
|
pub mod reader;
|
||||||
|
|
||||||
|
mod node;
|
||||||
mod queue;
|
mod queue;
|
||||||
mod scanner;
|
mod scanner;
|
||||||
mod token;
|
mod token;
|
||||||
|
|
8
src/node/mod.rs
Normal file
8
src/node/mod.rs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
/*
|
||||||
|
* 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/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//! This module contains the basis for storing arbitrary
|
||||||
|
//! YAML documents as an in memory graph.
|
Loading…
Reference in a new issue