Add stub for executor

Still not sure what/how this will look
This commit is contained in:
R Tyler Croy 2021-07-10 13:52:31 -07:00
parent 2863d2b0d2
commit 74d8279374
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
2 changed files with 14 additions and 0 deletions

13
src/exec.rs Normal file
View File

@ -0,0 +1,13 @@
/**
* This is the simple executor module.
*/
use log::*;
pub struct Executor {
}
impl Executor {
fn run() {
}
}

View File

@ -7,6 +7,7 @@ extern crate serde_json;
use log::*;
mod dao;
mod exec;
mod routes;
mod state;