Ole Kristian Sandum
Ole Kristian Sandum
The documentation for `Parser.int` claims that it fails for the strings "0123" and "123a", however when I run those strings through `Parser.int`, I get `Ok 0` and `Ok 123` respectively....
It would be nice if there was an easy builtin way to await on another async coroutine. As is possible in C# with Task and Task.
### Welcome! - [X] Yes, I've searched similar issues on [GitHub](https://github.com/traefik/traefik/issues) and didn't find any. - [X] Yes, I've searched similar issues on the [Traefik community forum](https://community.traefik.io) and didn't find...
### The following program `sample.go` triggers an unexpected result ```go package main import ( "fmt" "net/http" "reflect" ) type responseWriter struct { http.ResponseWriter } func (w *responseWriter) Flush() { fmt.Println("Flushing...")...
I am trying to authenticate using basic auth with app key and app secret. The way I understand it is that `AppAuthClient` is meant to be used for that. I...