2020-02-14 15:08:41 -05:00

16 lines
253 B
Rust

use std::collections::BTreeMap;
use super::Builtin;
mod hsl;
mod opacity;
mod other;
mod rgb;
pub(crate) fn register(f: &mut BTreeMap<String, Builtin>) {
hsl::register(f);
opacity::register(f);
other::register(f);
rgb::register(f);
}