mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-29 22:49:28 -07:00
24 lines
314 B
Rust
24 lines
314 B
Rust
use clap_derive::{Parser, ValueEnum};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(
|
|
Default,
|
|
Debug,
|
|
Clone,
|
|
Copy,
|
|
Parser,
|
|
ValueEnum,
|
|
Serialize,
|
|
Deserialize,
|
|
PartialEq,
|
|
Eq,
|
|
PartialOrd,
|
|
Ord,
|
|
)]
|
|
pub enum Services {
|
|
#[default]
|
|
All,
|
|
Processor,
|
|
Server,
|
|
}
|