First version, 0.1.0

This commit is contained in:
jar3b
2019-04-09 17:32:35 +03:00
parent 3b30616476
commit f8e923b600
4 changed files with 114 additions and 0 deletions

View File

@@ -1,2 +1,14 @@
# grawt
graceful terminations for go applications
## example usage
```
var waiter = grawt.NewWaiter()
waiter.AddCloseHandler(func() {
nacl.FinalizeStan()
}, false)
waiter.Wait()
```