meterstore 0.9.0

Hot/cold tiered store for metering time series — PostgreSQL for the recent window, Apache Iceberg for history.
Documentation
1
2
3
4
5
6
7
8
9
//! The `meterstore` command-line tool.
//!
//! Everything is in [`meterstore::cli`]; this is the entry point that runs it,
//! so the commands themselves stay unit-testable rather than living in a binary
//! nothing can call.

fn main() -> std::process::ExitCode {
    meterstore::cli::main()
}