Posya
Results
2
issues of
Posya
```go // Sending an HTTP request and accepting context func SendWithContext(ctx context.Context, body io.Reader) error { // Change NewRequest to NewRequestWithContext and pass context it req, err := http.NewRequestWithContext(ctx, http.MethodPost,...
Hello! I'm trying to make documentation out of a structure There is a config.Config structure, and nested structures in different packages ```go package config //go:generate go run github.com/g4s8/envdoc@latest -output environments.md...