Langgo is a go lightweight framework.
- Lightweight framework.
- Collection of components and helpers.
- Support backend, cross-platform desktop, and personal software development.
- Easy to work with other frameworks.
go get -u github.com/langwan/langgo
package main
import (
"github.com/langwan/langgo"
"github.com/langwan/langgo/components/hello"
)
func main() {
langgo.Run(&hello.Instance{Message: "hello"})
fmt.Println(hello.Get().Message)
}