1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-09 23:35:41 +00:00
VpSharp/Samples/VpSharp.VB_Sample/SayCommand.vb

12 lines
318 B
VB.net

Imports VpSharp.Commands
Imports VpSharp.Commands.Attributes
Public Class SayCommand
Inherits CommandModule
<Command("say")>
Public Async Function SayAsync(context as CommandContext, <Remainder> message As String) As Task
Await context.RespondAsync(message)
End Function
End Class