Files
fn-serverless/docs/extending.md
2016-08-09 22:34:28 -07:00

14 lines
383 B
Markdown

IronFunctions is extensible so you can add custom functionality and extend the project without needing to modify the core.
## Listeners
This is the main way to do it. To add listeners, copy main.go and use one of the following functions on the Server.
### AppListener
Implement `ifaces/AppListener` interface, then add it using:
```go
server.AddAppListener(myAppListener)
```