# Packages
No description provided by the author
No description provided by the author
No description provided by the author
# README
Langgo Framework
What is Langgo?
Langgo is a go lightweight framework.
Features
- Lightweight framework.
- Collection of components and helpers.
- Support backend, cross-platform desktop, and personal software development.
- Easy to work with other frameworks.
Document
Examples
Installation
go get -u github.com/langwan/langgo
Quick Start
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)
}