labt 0.1.0

Lab-t Lightweight Android build tool
1
2
3
4
5
6
7
8
9
10
11
12
13
use anyhow::Result;

pub trait Submodule {
    fn run(&mut self) -> Result<()> {
        Ok(())
    }
}

pub mod add;
pub mod build;
pub mod init;
pub mod resolve;
pub mod resolvers;