]> luflow.net public git repositories - flow-texpack.git/blob - src/main.rs
Initial commit.
[flow-texpack.git] / src / main.rs
1 // flow-texpack: A program that will allow you to generate texture atlas.
2 // zlib License (see LICENSE)
3
4 use flow_texpack::App;
5
6 #[tokio::main]
7 async fn main() {
8 let mut app = App::new();
9 app.run().await;
10 }