# Go Script Package Conflict Error
What I've tried:
-
package main with func main() -
package inner with func Main()- No package declaration
-
// +build ignore directive- Even simplest scripts fail
Example script:
Questions:
1. What's the correct package/function signature for Go in Windmill?
2. How should dependencies be declared?
3. Any working Go script examples?
The error mentions
inner_main.go and runner.go - are these Windmill-generated? How should my script interact with them?Context: Trying to migrate performance-critical DB connectors from TS to Go. TypeScript/Python work fine, only Go has issues.
Thanks!