Skip to content

Commit

Permalink
Move daemon and cli to its own folders
Browse files Browse the repository at this point in the history
  • Loading branch information
JosuGZ committed Oct 29, 2024
1 parent cd407d3 commit aa6ea62
Show file tree
Hide file tree
Showing 13 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions razer_control_gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ edition = "2018"

[[bin]]
name = "razer-cli"
path = "src/cli.rs"
path = "src/cli/cli.rs"

[[bin]]
name = "daemon"
path = "src/daemon.rs"
path = "src/daemon/daemon.rs"

[[bin]]
name = "razer-settings"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#[path = "../comms.rs"]
mod comms;
use clap::{error::ErrorKind, CommandFactory, Parser, Subcommand, ValueEnum};

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#[path = "../comms.rs"]
mod comms;
mod config;
// mod driver_sysfs;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit aa6ea62

Please sign in to comment.