The Go compiler is complaining about my code to append a slice to a slice. Here are relevant excerpts:
type LanidEntry struct { lanid string group st
You need to use ...:
...
lanids = append(lanids, lanids_loaded...)
Also, also please format your code :)
You should also read Slice Tricks on the Wiki.