diff options
| author | Fuwn <[email protected]> | 2024-06-12 01:39:30 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 01:39:30 -0700 |
| commit | 89f93a7d8d362408872da0c4f10319a8a1d9d83b (patch) | |
| tree | 8ea6d1090097325f9429811e1effdf2e3ce3d68f | |
| parent | refactor(buddy_list): clearer naming (diff) | |
| download | whirl-89f93a7d8d362408872da0c4f10319a8a1d9d83b.tar.xz whirl-89f93a7d8d362408872da0c4f10319a8a1d9d83b.zip | |
feat(commands): add channel command
| -rw-r--r-- | crates/whirl_server/src/cmd/commands/channel.rs | 1 | ||||
| -rw-r--r-- | crates/whirl_server/src/cmd/commands/mod.rs | 1 |
2 files changed, 2 insertions, 0 deletions
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; |