From 89f93a7d8d362408872da0c4f10319a8a1d9d83b Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 12 Jun 2024 01:39:30 -0700 Subject: feat(commands): add channel command --- crates/whirl_server/src/cmd/commands/channel.rs | 1 + crates/whirl_server/src/cmd/commands/mod.rs | 1 + 2 files changed, 2 insertions(+) create mode 100644 crates/whirl_server/src/cmd/commands/channel.rs diff --git a/crates/whirl_server/src/cmd/commands/channel.rs b/crates/whirl_server/src/cmd/commands/channel.rs new file mode 100644 index 0000000..280baef --- /dev/null +++ b/crates/whirl_server/src/cmd/commands/channel.rs @@ -0,0 +1 @@ +pub struct Channel(String); diff --git a/crates/whirl_server/src/cmd/commands/mod.rs b/crates/whirl_server/src/cmd/commands/mod.rs index 0da031f..5b96463 100644 --- a/crates/whirl_server/src/cmd/commands/mod.rs +++ b/crates/whirl_server/src/cmd/commands/mod.rs @@ -4,6 +4,7 @@ pub mod action; pub mod appear_actor; pub mod buddy_list; +mod channel; pub mod long_location; pub mod property; pub mod redirect_id; -- cgit v1.2.3