sos_client/
compile.rs

1pub trait Compile {
2    type Args;
3
4    fn compile(self, args: Self::Args);
5}