mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-01 20:45:42 +00:00
19 lines
362 B
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
|
||
|
}
|