element-template/go.mod
google-labs-jules[bot] 581d09bc65 feat: Create template for custom HTML elements
This commit introduces a new template repository for creating custom HTML elements for the core web3 framework. The template includes a Go backend, an Angular custom element, and a full release cycle configuration.

The Go backend is a simple HTTP server that serves the frontend and provides a basic API. The Angular custom element is a simple "Hello, world!" component that can be used as a starting point for more complex elements. The release cycle is configured with GoReleaser and GitHub Actions.
2025-11-10 02:59:45 +00:00

9 lines
223 B
Modula-2

module github.com/your-username/core-element-template
go 1.24.3
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/cobra v1.10.1 // indirect
github.com/spf13/pflag v1.0.10 // indirect
)