diff --git a/flake.nix b/flake.nix index 6f239fa..29f0b9a 100644 --- a/flake.nix +++ b/flake.nix @@ -68,9 +68,11 @@ inherit cargoArtifacts; }); - channel = pkgs.lib.release.channel { + channel = pkgs.lib.releaseTools.channel { constituents = [ - newalan + (pkgs.lib.releaseTools.nixBuild { + + }) ]; }; in diff --git a/src/commands/ping.rs b/src/commands/ping.rs index 5b9f031..d8f626e 100644 --- a/src/commands/ping.rs +++ b/src/commands/ping.rs @@ -6,6 +6,6 @@ use serenity::prelude::Context; #[command] pub async fn ping(ctx: &Context, msg: &Message) -> CommandResult { msg.channel_id.say(&ctx.http, "pong!").await?; - + Ok(()) }