1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-10 03:55:41 +00:00
VpSharp/Samples/VpSharp.VB_Sample/SayCommand.vb

12 lines
318 B
VB.net
Raw Permalink Normal View History

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