Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit 372a86f

Browse files
committed
wip
1 parent cf6fd13 commit 372a86f

File tree

7 files changed

+25
-39
lines changed

7 files changed

+25
-39
lines changed

src/cli/command.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate::cli::config::show::ConfigCommand;
21
use crate::cli::vapid::WebpushCommand;
32
use clap::{ColorChoice, Parser, Subcommand};
43

@@ -23,8 +22,6 @@ pub struct Cli {
2322
pub enum Commands {
2423
#[command(about = "About webpush notification")]
2524
Webpush(WebpushCommand),
26-
#[command(about = "About your misskey configuration")]
27-
Config(ConfigCommand),
2825
#[command(about = "About Meilisearch")]
2926
Search(SearchCommand),
3027
#[command(about = "About remote server")]
@@ -46,11 +43,6 @@ pub async fn exec() -> Result<(), Box<dyn std::error::Error>> {
4643
eprintln!("{}", e);
4744
}
4845
}
49-
Commands::Config(cmd) => {
50-
if let Err(e) = cmd.exec() {
51-
eprintln!("{}", e);
52-
}
53-
}
5446
Commands::Search(cmd) => {
5547
if let Err(e) = cmd.exec().await {
5648
eprintln!("{}", e);

src/cli/config/mod.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/cli/config/show.rs

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/cli/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
pub mod command;
2-
pub mod config;
32
pub mod id;
43
pub mod note;
54
pub mod remote;

src/entities/cherrypick/mod.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
pub mod latest;
2+
3+
#[path ="4.16.0/mod.rs"]
4+
pub mod v4_16_0;
5+
6+
#[path="4.15.1/mod.rs"]
7+
pub mod v4_15_1;
8+
9+
#[path="4.15.0/mod.rs"]
10+
pub mod v4_15_0;

src/entities/misskey/mod.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
pub mod latest;
2+
#[path="2025.7.0/mod.rs"]
3+
pub mod v2025_7_0;
4+
5+
#[path="2025.6.1/mod.rs"]
6+
pub mod v2025_6_1;
7+
8+
#[path="2025.6.0/mod.rs"]
9+
pub mod v2025_6_0;
10+
11+
#[path="2025.5.1/mod.rs"]
12+
pub mod v2025_5_1;

src/entities/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
pub mod misskey;
2+
pub mod cherrypick;
3+
14

0 commit comments

Comments
 (0)