[go-nuts] Re: Wrestling with Mingw64 on Windows

2017-01-30 Thread Tim O'Brien
I've been using CGO on Windows for a while it works well. I followed Andrew Gerrand's advice here: https://groups.google.com/forum/#!topic/golang-dev/Rjgft0z8ICo I installed TDM-GCC, and then Go. See the discussion there. Tim On Tuesday, 31 January 2017 02:32:34 UTC+11, Arie van Wingerden wrot

[go-nuts] Re: Trying to dynamically find interfaces

2016-06-27 Thread Tim O'Brien
It's best to have a function to create your BaseAppController: func NewBaseAppContoller(subClasses ...interface{}) *BaseAppController { for _, i := range subClasses { } } On Monday, 27 June 2016 15:16:40 UTC+1, David Koblas wrote: > > I've got a program that is trying to implement functions on