diff --git a/Statup-Plugins.md b/Statup-Plugins.md index e8b95be..b6f0053 100644 --- a/Statup-Plugins.md +++ b/Statup-Plugins.md @@ -1,5 +1,11 @@ Since Statup is built in Go Language we can use the go plugin feature to create dynamic plugins that run on load. Statup has an event anytime anything happens, you can create your own plugins and do any type of function. +## Statup Plugin Package +To implement your own ideas into Statup, either do a git push request or use it has a plugin using the [statup/plugin](https://github.com/hunterlong/statup/blob/master/plugin/main.go) package. +``` +go get github.com/hunterlong/statup/plugin +``` + ## Plugin Interface ```go type PluginActions interface {