1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-09-20 09:18:48 +00:00
arikawa/bot/extras/arguments/arguments.go
2021-06-01 19:59:01 -07:00

19 lines
365 B
Go

package arguments
import (
"strings"
"github.com/diamondburned/arikawa/v3/bot"
)
// Joined implements ManualParseable, in case you want all arguments but
// joined in a uniform way with spaces.
type Joined string
var _ bot.ManualParser = (*Joined)(nil)
func (j *Joined) ParseContent(args []string) error {
*j = Joined(strings.Join(args, " "))
return nil
}