mirror of
https://github.com/labstack/echo.git
synced 2024-11-28 08:38:39 +02:00
05e8fee3de
Signed-off-by: Vishal Rana <vr@labstack.com>
48 lines
669 B
Go
48 lines
669 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/bolt"
|
|
)
|
|
|
|
type user struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
var users map[string]*user
|
|
|
|
func init() {
|
|
users = map[string]*user{
|
|
"1": &user{
|
|
ID: "1",
|
|
Name: "Wreck-It Ralph",
|
|
},
|
|
}
|
|
}
|
|
|
|
func createUser(c *bolt.Context) {
|
|
u := new(user)
|
|
if c.Bind(u) {
|
|
users[u.ID] = u
|
|
c.JSON(http.StatusOK, u)
|
|
}
|
|
}
|
|
|
|
func getUsers(c *bolt.Context) {
|
|
c.JSON(http.StatusOK, users)
|
|
}
|
|
|
|
func getUser(c *bolt.Context) {
|
|
c.JSON(http.StatusOK, users[c.P(0)])
|
|
}
|
|
|
|
func main() {
|
|
b := bolt.New()
|
|
b.Post("/users", createUser)
|
|
b.Get("/users", getUsers)
|
|
b.Get("/users/:id", getUser)
|
|
b.Run(":8080")
|
|
}
|