From 136e59f86706a212fbbf64be26e642e1240009e5 Mon Sep 17 00:00:00 2001 From: "DavidCrompton1192@gmail.com" Date: Mon, 6 Mar 2023 19:27:53 -0500 Subject: [PATCH] Test releaseTools --- flake.nix | 6 ++++-- src/commands/ping.rs | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) 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(()) }