diff options
Diffstat (limited to 'example/http_server.go')
-rwxr-xr-x | example/http_server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/http_server.go b/example/http_server.go index 86255e6..fe1d456 100755 --- a/example/http_server.go +++ b/example/http_server.go @@ -12,7 +12,7 @@ import ( ) func main() { - // New instance with builtin context. Alternative: r, ctx := rutina.OptionContext(ctx) + // New instance with builtin context r := rutina.New(rutina.WithStdLogger()) srv := &http.Server{Addr: ":8080"} |