mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* switch all fe to camelCase * switch to camelCase on backend --------- Co-authored-by: Aiden McClelland <me@drbonez.dev>
21 lines
390 B
Rust
21 lines
390 B
Rust
use std::path::PathBuf;
|
|
|
|
use clap::Parser;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
pub mod builder;
|
|
pub mod docker;
|
|
pub mod git_hash;
|
|
pub mod header;
|
|
pub mod manifest;
|
|
pub mod reader;
|
|
|
|
pub const SIG_CONTEXT: &[u8] = b"s9pk";
|
|
|
|
#[derive(Deserialize, Serialize, Parser)]
|
|
#[serde(rename_all = "camelCase")]
|
|
#[command(rename_all = "kebab-case")]
|
|
pub struct VerifyParams {
|
|
pub path: PathBuf,
|
|
}
|