burrtype/export/
target.rs

1use crate::export::Burrxporter;
2use std::path::Path;
3
4pub trait Target {
5    fn export(self, to: &Path, exporter: &Burrxporter);
6}
7