# go-self **Repository Path**: jk1123/go-self ## Basic Information - **Project Name**: go-self - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-17 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # go-self Simple easy lightweight frame(简单 容易 轻量的 web 框架) ## 1.install ```go go get -u github.com/huyoufu/go-self ``` ## 2.start ```go package main import ( "github.com/huyoufu/go-self/router" "github.com/huyoufu/go-self/server" ) func main() { app := server.NewServer() app.Port(80) router.Any("/", func(ctx router.Context) { ctx.WriteString("你好") }) app.Start() } ```