From 74d827937494faf8fe3f33be75479d8797d704e4 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sat, 10 Jul 2021 13:52:31 -0700 Subject: [PATCH] Add stub for executor Still not sure what/how this will look --- src/exec.rs | 13 +++++++++++++ src/main.rs | 1 + 2 files changed, 14 insertions(+) create mode 100644 src/exec.rs diff --git a/src/exec.rs b/src/exec.rs new file mode 100644 index 0000000..bd2e55d --- /dev/null +++ b/src/exec.rs @@ -0,0 +1,13 @@ +/** + * This is the simple executor module. + */ + +use log::*; + +pub struct Executor { +} + +impl Executor { + fn run() { + } +} diff --git a/src/main.rs b/src/main.rs index 9ed84a7..78064c6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,6 +7,7 @@ extern crate serde_json; use log::*; mod dao; +mod exec; mod routes; mod state;