local -> cli_only;remote -> rpc_only;both -> local

This commit is contained in:
Aiden McClelland
2021-04-08 16:14:33 -06:00
parent 64d5d40765
commit b3d698f51f
5 changed files with 99 additions and 57 deletions

View File

@@ -5,8 +5,9 @@ mod parse;
pub enum ExecutionContext {
Standard,
LocalOnly(Path),
RemoteOnly(Path),
CliOnly(Path),
RpcOnly(Path),
Local(Path),
}
impl Default for ExecutionContext {
fn default() -> Self {