mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
10 lines
506 B
C#
10 lines
506 B
C#
|
|
using ApplicationCommandType = Myriad.Types.ApplicationCommand.ApplicationCommandType;
|
||
|
|
|
||
|
|
namespace PluralKit.Bot;
|
||
|
|
|
||
|
|
public partial class ApplicationCommandTree
|
||
|
|
{
|
||
|
|
public static ApplicationCommand ProxiedMessageQuery = new(ApplicationCommandType.Message, "Message info");
|
||
|
|
public static ApplicationCommand ProxiedMessageDelete = new(ApplicationCommandType.Message, "Delete message");
|
||
|
|
public static ApplicationCommand ProxiedMessagePing = new(ApplicationCommandType.Message, "Ping message author");
|
||
|
|
}
|