Skip to content

Instantly share code, notes, and snippets.

@epsniff
Last active October 25, 2017 23:43
Show Gist options
  • Save epsniff/881dbc616a350f093a1d0da6ee57f8ef to your computer and use it in GitHub Desktop.
Save epsniff/881dbc616a350f093a1d0da6ee57f8ef to your computer and use it in GitHub Desktop.
Bleve Intro
type City struct {
Name string
}
type User struct {
Id string
Email string
CurrCityName string
PastCities []*City
}
var m1 = &User{
Id: "marty.foobar",
Email: "marty.foobar@gmail.com",
CurrCityName: "New York",
PastCities: []*City{&City{"Hamburg"}, &City{"Paris"}},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment