lib/node: create module skeleton

This commit is contained in:
Paul Stemmet 2022-04-08 13:51:08 +00:00
parent 9b3caee7e4
commit cfb7c7bdbc
Signed by: Paul Stemmet
GPG Key ID: EDEA539F594E7E75
2 changed files with 9 additions and 0 deletions

View File

@ -25,6 +25,7 @@ pub mod error;
pub mod event;
pub mod reader;
mod node;
mod queue;
mod scanner;
mod token;

8
src/node/mod.rs Normal file
View 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.