distill-daemon 0.0.3

Daemon component of the asset pipeline `distill`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use distill_schema::data::artifact;

pub trait BuildFunc {
    fn build(artifact: artifact::Reader);
}

pub struct BuildContext {}

pub struct Builder {
    build_funcs: HashMap<AssetTypeId, Box<dyn BuildFunc>>,
}

impl Builder {
    pub fn build(artifact: &artifact::Reader) {}
}