Categorygithub.com/langwan/langgo
repositorypackage
0.5.53
Repository: https://github.com/langwan/langgo.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Langgo Framework

Run Tests Tag

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

English Document

中文文档

Examples

langgo-examples v0.5.x

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)
}