writekit/studio/embed_testing.go
Josh b2b2a42ca9
Some checks failed
ci/woodpecker/push/build Pipeline failed
fix: enable CI tests with build tags and add billing tests
- Add build tag to studio/embed.go to exclude from test builds
- Create stub embed_testing.go for test builds
- Update CI pipeline to use -tags testing
- Add tests for webhook signature verification and status normalization

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-09 02:44:49 +02:00

18 lines
222 B
Go

//go:build testing
package studio
import (
"io/fs"
"net/http"
)
var distFS fs.FS
func Handler() http.Handler {
return http.NotFoundHandler()
}
func Read(name string) ([]byte, error) {
return nil, fs.ErrNotExist
}