element-template/cmd/demo-cli/main.go
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
124 B
Go

package main
import (
"github.com/your-username/core-element-template/cmd/demo-cli/cmd"
)
func main() {
cmd.Execute()
}