1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ntcip::dms
//
// Copyright (C) 2019-2023  Minnesota Department of Transportation
//
//! Dynamic message signs; NTCIP 1203
pub mod config;
pub mod font;
pub mod graphic;
pub mod multi;
mod render;
mod sign;

/// Result type
pub type Result<T> = std::result::Result<T, multi::SyntaxError>;

pub use render::Page;
pub use sign::{Dms, DmsBuilder};