n4n5/commands/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Module for the `movies` subcommand.
pub mod movies;

/// Module for the `sync` subcommand.
pub mod sync;

/// Module for the `config` subcommand.
pub mod config;

/// Module for the `gh` subcommand.
/// See [`crate::commands::gh::lib`] for more information.
pub mod gh;

/// Module for the `music` subcommand.
pub mod music;