Exemplo n.º 1
0
Arquivo: app.go Projeto: udbmnm/girl
// DELETE /tasks/:id
func deleteTask(c *girl.Context) girl.View {
	model.DeleteTask(c.GetNumParam("id"))
	return c.RenderText("success")
}
Exemplo n.º 2
0
Arquivo: hello.go Projeto: udbmnm/girl
func Index(c *girl.Context) girl.View {
	return c.RenderText("hello world")
}