mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-13 18:42:42 +00:00
12 lines
279 B
Go
12 lines
279 B
Go
|
package slice
|
||
|
|
||
|
import (
|
||
|
"github.com/Luzifer/go_helpers/v2/str"
|
||
|
"github.com/Luzifer/twitch-bot/plugins"
|
||
|
)
|
||
|
|
||
|
func Register(args plugins.RegistrationArguments) error {
|
||
|
args.RegisterTemplateFunction("inList", plugins.GenericTemplateFunctionGetter(str.StringInSlice))
|
||
|
return nil
|
||
|
}
|