-
Hi.
Is it possible to re-marshal the response after mutating the structtags?
eg.
```go
package main
import (
"encoding/json"
"fmt"
"reflect"
"github.com/fatih/structtag"
)
fun…
-
It would be nice if we can enable the usage of JSON API Spec when creating a new project which would result in the generator adding the appropriate StructTags.
References:
http://jsonapi.org
htt…
-
I'm running some simple tests to get started with the Golang client. I can do a simple bin write:
```
pk, _ := asp.NewKey("test", "user", "testKey")
bin0 := asp.NewBin("myBin", "myValue")
as.…
-
I have a very simple module (lives at `module/main.tf`):
```
variable "in" {}
output "out" {
value = "${var.in}"
}
```
And a very simple config that includes the module above (`main.tf`):
```
p…
-
Hey Guys,
I use Terraform for provisioning AWS infrastructure.
I installed latest from https://www.terraform.io/downloads.html (which is 0.3.7)
```
$ terraform --version
Terraform v0.3.7
```
Today …
-
### What version of Go are you using (`go version`)?
go1.11beta2
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (…
-
**EDIT: this is very similar to https://github.com/golang/go/issues/23637, so maybe it should be closed.**
There is recent discussion around Go2 and some larger language changes.
With this, I th…
-
https://goreportcard.com/report/github.com/cilium/cilium#golint
tgraf updated
6 years ago
-
## [github.com/manyminds/api2go/jsonapi](https://github.com/manyminds/api2go)
The marshall/unmarshall uses an approach similar to JSON marshall/unmarshall in the standard lib, but it can be customize…
-
I formatted my options like below using tabs and it took a bit to figure out what I did wrong. The scan code only skips spaces for whitespace when parsing the struct tag. Support for tabs (or any whit…