From 812cf030c0b53aee68627aa117d2051d6b8ae21c Mon Sep 17 00:00:00 2001 From: Scott Lawrence Date: Wed, 26 Jun 2024 21:49:43 -0700 Subject: A bit of info in the README --- README.md | 7 +++++++ src/main.rs | 11 +++++++++++ 2 files changed, 18 insertions(+) diff --git a/README.md b/README.md index 03a4c0e..92c81f5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,11 @@ # Varanus +Varanus is named for the genus _varanus_ of monitor lizards. +## Installation + +## Contributing + +Varanus is licensed under the MIT license (see `LICENSE`). Feel free to clone +the repository, or send in patches via `git-send-email`. 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}; @@ -9,8 +11,17 @@ struct Cli { verbose: bool, } +#[derive(Serialize, Deserialize)] +struct Battery { +} + +#[derive(Serialize, Deserialize)] +struct Process { +} + #[derive(Serialize, Deserialize)] struct State { + asof: SystemTime, } fn main() { -- cgit v1.2.3-54-g00ecf