1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-09-27 20:58:50 +00:00
arikawa/bot/extras/arguments/arguments.go

19 lines
362 B
Go

package arguments
import (
"strings"
"github.com/diamondburned/arikawa/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
}