Revert "Checking in an abandoned work in progress on task URI management"

This reverts commit 403de15964.
This commit is contained in:
R Tyler Croy 2021-01-31 15:02:00 -08:00
parent 403de15964
commit e3717a4cef
4 changed files with 0 additions and 18 deletions

1
Cargo.lock generated
View File

@ -703,7 +703,6 @@ version = "0.2.0"
dependencies = [
"colored",
"handlebars",
"lazy_static",
"log",
"pest",
"pest_derive",

View File

@ -12,7 +12,6 @@ keywords = ["sysadmin", "management"]
[dependencies]
colored = "2"
handlebars = "~3.5"
lazy_static = "~1.4.0"
log = "0.4"
pest = "~2.1"
pest_derive = "~2.1"

View File

@ -1,6 +1,4 @@
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate pest;
#[macro_use]
extern crate pest_derive;

View File

@ -9,16 +9,6 @@ use std::io::Read;
use std::path::PathBuf;
use url::Url;
struct NativeTask {
}
lazy_static! {
static ref REGISTRY: HashMap<String, NativeTask> = {
let mut m = HashMap::new();
m
};
}
#[derive(Parser)]
#[grammar = "task.pest"]
struct TaskParser;
@ -114,10 +104,6 @@ impl Script {
}
}
trait Tasq {
fn name() -> String;
}
#[derive(Clone, Debug)]
pub struct Task {
pub name: String,