1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-24 05:17:03 +00:00

Nothing special here

This commit is contained in:
Gerasimos (Makis) Maropoulos
2017-01-25 22:19:06 +02:00
parent b7b77b62d3
commit 7dfb13cfbd
7 changed files with 994 additions and 910 deletions

19
plugins/README.md Normal file
View File

@@ -0,0 +1,19 @@
# Plugins
Navigate through [iris-contrib/plugin](https://github.com/iris-contrib/plugin) repository to view all available 'plugins'.
> By the word 'plugin', we mean an event-driven system and not the future go1.8 plugin feature.
## Installation
```sh
$ go get github.com/iris-contrib/plugin/...
```
## How can I register a plugin?
```go
app := iris.New()
app.Plugins.Add(thePlugin)
```