diff options
| author | Fuwn <[email protected]> | 2021-04-30 16:31:28 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-30 16:31:28 +0000 |
| commit | 04786afcdf3f4df7de30f78a230b92e95797ead2 (patch) | |
| tree | c730a9d1041b4f007d8102194cc7d47437dd5eec /src/server/cmd/commands/mod.rs | |
| parent | refactor(makefile): introduce easily configurable `Makefile` variables, document (diff) | |
| download | whirl-04786afcdf3f4df7de30f78a230b92e95797ead2.tar.xz whirl-04786afcdf3f4df7de30f78a230b92e95797ead2.zip | |
feat(hub): *implement* new commands; subscribe room, subscribe distance, teleport
This is NOT the final implementation of these commands, this commit is mearly a preperation for
future implementation.
Diffstat (limited to 'src/server/cmd/commands/mod.rs')
| -rw-r--r-- | src/server/cmd/commands/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/cmd/commands/mod.rs b/src/server/cmd/commands/mod.rs index 1fad6a3..fab8734 100644 --- a/src/server/cmd/commands/mod.rs +++ b/src/server/cmd/commands/mod.rs @@ -6,7 +6,9 @@ pub mod buddy_list; pub mod property; pub mod room; pub mod session; -pub mod subscribe; +pub mod subscribe_distance; +pub mod subscribe_room; +pub mod teleport; pub mod text; pub mod whisper; // pub mod register_object_id; // TODO: Implement. |