1
0
mirror of https://github.com/kataras/iris.git synced 2026-03-06 08:25:59 +00:00

Version 3.0.0-beta cleaned

This commit is contained in:
Makis Maropoulos
2016-05-30 17:08:09 +03:00
commit c26668a489
114 changed files with 14552 additions and 0 deletions

25
graceful/README.md Normal file
View File

@@ -0,0 +1,25 @@
## Package information
Enables graceful shutdown.
## Usage
```go
package main
import (
"github.com/kataras/iris/graceful"
"github.com/kataras/iris"
"time"
)
func main() {
api := iris.New()
api.Get("/", func(c *iris.Context) {
c.Write("Welcome to the home page!")
})
graceful.Run(":3001", time.Duration(10)*time.Second, api)
}
```