Skip to content

laeo/gorest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What's this?

GOREST is a simple RESTful framework, because of write by golang, so i named it "GOREST".

How to use?

For example:

g := gorest.Boot()

g.Get("/users/:id", func(w http.ResponseWriter, r *http.Request, c gorest.Context){
    w.Write([]byte("User ID: " + c.Get("id")))
})

g.Run(":3000")

License

Based on MIT license.

About

simple RESTful framework write by golang.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages