diff options
| author | Fuwn <[email protected]> | 2024-06-12 01:39:30 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 01:39:30 +0000 |
| commit | 55cb923f79c243b4e4b4460142677d234cf7e9f3 (patch) | |
| tree | 8175acb9b028a2c153ac37d02d2b700a1f390044 /crates/whirl_server/src | |
| parent | refactor(buddy_list): clearer naming (diff) | |
| download | whirl-55cb923f79c243b4e4b4460142677d234cf7e9f3.tar.xz whirl-55cb923f79c243b4e4b4460142677d234cf7e9f3.zip | |
feat(commands): add channel command
Diffstat (limited to 'crates/whirl_server/src')
| -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; |