diff options
| author | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-26 21:49:43 -0700 |
|---|---|---|
| committer | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-26 21:49:43 -0700 |
| commit | 812cf030c0b53aee68627aa117d2051d6b8ae21c (patch) | |
| tree | 75ef7f710d5e18a73cbe4f49dd77f5ce91eb7329 /src | |
| parent | 563d4338d2039db9164d31cf9aaf68797d8adf03 (diff) | |
| download | varanus-812cf030c0b53aee68627aa117d2051d6b8ae21c.tar.gz varanus-812cf030c0b53aee68627aa117d2051d6b8ae21c.tar.bz2 varanus-812cf030c0b53aee68627aa117d2051d6b8ae21c.zip | |
A bit of info in the README
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 0701c7e..4086419 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +use std::time::SystemTime; + use clap::Parser; use serde::{Serialize,Deserialize}; @@ -10,7 +12,16 @@ struct Cli { } #[derive(Serialize, Deserialize)] +struct Battery { +} + +#[derive(Serialize, Deserialize)] +struct Process { +} + +#[derive(Serialize, Deserialize)] struct State { + asof: SystemTime, } fn main() { |
