Skip to content

Han-songyang/GoZephyr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoZephyr

codecov

📖 Introduction

GoZephyr is an HTTP framework written in Golang!

Used to help users quickly build their own HTTP service, and provides an introduction to the general api。

👋 Getting Started

go get github.com/Han-songyang/GoZephyr

✈️ Quick Start

package main

import "github.com/Han-songyang/GoZephyr"

func main() {
	s := GoZephyr.NewCoreServer()
	s.Get("/", func(ctx *GoZephyr.Context) {
		ctx.Resp.Write([]byte("hello, GoZephyr"))
	})
	s.Start(":8081")
}

⌛️ Only a small number of features have been implemented so far, and a large number of features are under development.

About

GoZephyr is an HTTP framework written in Golang!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages