dockerfile_parser_rs/
lib.rs1mod ast;
2mod error;
3mod file;
4mod parser;
5mod symbols;
6mod utils;
7
8pub type ParseResult<T> = Result<T, ParseError>;
11
12pub use crate::ast::Instruction;
13pub use crate::error::ParseError;
14pub use crate::file::Dockerfile;