1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00
This commit is contained in:
Gerasimos (Makis) Maropoulos 2017-05-05 04:21:57 +00:00 committed by GitHub
commit f07bd73655

View file

@ -92,3 +92,10 @@ if err != nil {
panic(err)
}
```
## Relative
Relative links and source codeview that helps you understand how this pattern works and can be extended to fit your needs:
- [go-options](https://github.com/kataras/go-options)
- A web framework's flow: [configuration.go:26](https://github.com/kataras/iris/blob/master/configuration.go#L26), [configuration.go:160](https://github.com/kataras/iris/blob/master/configuration.go#L160), [iris.go:202](https://github.com/kataras/iris/blob/master/iris.go#L202), [iris.go:259](https://github.com/kataras/iris/blob/master/iris.go#L259)