From 6d6bd4eaaeaa0c90594891f1bd31c99cfe55eb79 Mon Sep 17 00:00:00 2001 From: DylanCa Date: Sat, 13 Jan 2024 12:37:11 +0100 Subject: [PATCH] Added documentation for Commands --- src/models/client/commands.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/models/client/commands.rs b/src/models/client/commands.rs index 22e7ed0..c4b3f92 100644 --- a/src/models/client/commands.rs +++ b/src/models/client/commands.rs @@ -1,3 +1,5 @@ +/// List of Commands to send through IPC to Discord Client. +/// Currently only supports SET_ACTIVITY. pub enum Commands { SetActivity, }