Files
vikunja/examples/plugins
kolaente 3b9bc0e542 fix(plugins): exclude example plugin from module build
The example plugin is a Yaegi entrypoint evaluated at runtime through its
exported factory functions, so it has no func main. As a regular package main
it broke `go build ./...` with "function main is undeclared in the main
package".

Add //go:build ignore so the go tool skips it. Yaegi is unaffected: the loader
reads the file and calls interp.Eval on its source, which does not evaluate
build constraints.

Fixes #3478
2026-08-20 16:51:01 +02:00
..