diff options
author | Guillaume Pasquet <dev@etenil.net> | 2022-02-15 21:25:13 +0000 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2022-02-15 21:25:13 +0000 |
commit | ed5090e427d05a0c8d413c20b754a93214034db2 (patch) | |
tree | ebf8ff7ed8668b1e7a27497761ea8e9ed3f1a22b /src/executor.rs | |
parent | 60f721b94ae70533a4a6ee9ffa7d24e5a19abff5 (diff) |
Add gitlab-ci
Diffstat (limited to 'src/executor.rs')
-rw-r--r-- | src/executor.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/executor.rs b/src/executor.rs index 189df6f..ef97ace 100644 --- a/src/executor.rs +++ b/src/executor.rs @@ -20,7 +20,7 @@ impl Context { pub fn empty() -> Context { Context { - vars: HashMap::new() + vars: HashMap::new(), } } @@ -52,9 +52,7 @@ pub struct Executor { impl Executor { pub fn new(context: Context) -> Executor { - Executor { - context - } + Executor { context } } pub fn execute(&mut self, bfile: BarbFile) -> Result<ureq::Response, String> { |