mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
20 lines
364 B
Go
20 lines
364 B
Go
|
package plugins
|
||
|
|
||
|
type (
|
||
|
TemplateFuncDocumentation struct {
|
||
|
Name string
|
||
|
Description string
|
||
|
Syntax string
|
||
|
Example *TemplateFuncDocumentationExample
|
||
|
Remarks string
|
||
|
}
|
||
|
|
||
|
TemplateFuncDocumentationExample struct {
|
||
|
MatchMessage string
|
||
|
MessageContent string
|
||
|
Template string
|
||
|
ExpectedOutput string
|
||
|
FakedOutput string
|
||
|
}
|
||
|
)
|