diff options
| author | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-01 11:58:08 -0600 |
|---|---|---|
| committer | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-01 11:58:08 -0600 |
| commit | 563d4338d2039db9164d31cf9aaf68797d8adf03 (patch) | |
| tree | 80ca369b8f4c39f6a3fbe58a29aa0514d90ff685 /src/main.rs | |
| parent | 4efe817e075598cfa3ce2e85ec84f96a0d95c734 (diff) | |
| download | varanus-563d4338d2039db9164d31cf9aaf68797d8adf03.tar.gz varanus-563d4338d2039db9164d31cf9aaf68797d8adf03.tar.bz2 varanus-563d4338d2039db9164d31cf9aaf68797d8adf03.zip | |
Adding serde dependency for communication
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index e9ce681..0701c7e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,5 @@ use clap::Parser; +use serde::{Serialize,Deserialize}; #[derive(Parser)] struct Cli { @@ -8,6 +9,10 @@ struct Cli { verbose: bool, } +#[derive(Serialize, Deserialize)] +struct State { +} + fn main() { let args = Cli::parse(); if args.daemon { |
