I'm trying to write a webapp with Go/App Engine and I'm using windows for my dev machine. When I try to break my app into modules (main, models, ...), and try to use relative path imports like
import './models'
I get an error saying that ':' is an illegal character in path. Windows uses Drive:\Path syntax for path, and the golang team seem to have refused to add ':' to the set of allowed characters in go path.
How do I write multi-module applications with Go on windows?