mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-01 12:34:28 +00:00
19 lines
365 B
Go
19 lines
365 B
Go
package arguments
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/diamondburned/arikawa/v2/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
|
|
}
|