mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-10 03:55:41 +00:00
12 lines
318 B
VB.net
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
|