diff options
| author | Xavier Del Campo <xavi92psx@gmail.com> | 2018-12-31 00:28:46 +0100 |
|---|---|---|
| committer | Xavier Del Campo <xavi92psx@gmail.com> | 2018-12-31 00:28:46 +0100 |
| commit | 42f2476aeebc5eb5a9366a6a366c9678eba6eb1b (patch) | |
| tree | 2098f4cdd976edae82d841f56298a6030512a792 /src/main.rs | |
| parent | b47361f283777f266970f9c082782ebac6c04aef (diff) | |
| download | rspsxserial-42f2476aeebc5eb5a9366a6a366c9678eba6eb1b.tar.gz | |
Some more work, but it still does not compile
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index c65130a..c532fde 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,7 @@ extern crate serial; mod cmdline; mod app; +mod transfer; /// Main function. fn main() { @@ -8,6 +9,7 @@ fn main() { match cmdline::process_arguments() { None => return, Some(hash) => { + // Execute application logic. match app::app(hash) { _ => return } |
