Updated Statup Plugins (markdown)

master
Hunter Long 2018-06-25 21:02:50 -07:00
parent cd20fae309
commit bed95470c0
1 changed files with 6 additions and 0 deletions

@ -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. 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 ## Plugin Interface
```go ```go
type PluginActions interface { type PluginActions interface {