REPOSITORY / ScuroNeko/Laniakea

Compare commits

DIFF REPOSITORY

Compare commits

..
2 Commits
Author SHA1 Message Date
ScuroNeko 434638a61d small fix; v0.6.1 2026-02-18 11:46:53 +03:00
ScuroNeko c2909b4cfb small fix; v0.6.1 2026-02-18 11:46:48 +03:00
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -109,6 +109,9 @@ func (p *Plugin) AddCommand(command *Command) *Plugin {
p.Commands[command.command] = *command
return p
}
func (p *Plugin) NewCommand(exec CommandExecutor, command string, args ...CommandArg) *Command {
return NewCommand(exec, command, args...)
}
func (p *Plugin) AddPayload(command *Command) *Plugin {
p.Payloads[command.command] = *command
return p
+2 -2
View File
@@ -1,8 +1,8 @@
package utils
const (
VersionString = "0.6.0"
VersionString = "0.6.1"
VersionMajor = 0
VersionMinor = 6
VersionPatch = 0
VersionPatch = 1
)