mirror of
https://github.com/kataras/iris.git
synced 2026-02-09 12:16:10 +00:00
reorganization of _examples and add some new examples such as iris+groupcache+mysql+docker
Former-commit-id: ed635ee95de7160cde11eaabc0c1dcb0e460a620
This commit is contained in:
8
_examples/mvc/vuejs-todo-mvc/src/todo/item.go
Normal file
8
_examples/mvc/vuejs-todo-mvc/src/todo/item.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package todo
|
||||
|
||||
type Item struct {
|
||||
SessionID string `json:"-"`
|
||||
ID int64 `json:"id,omitempty"`
|
||||
Title string `json:"title"`
|
||||
Completed bool `json:"completed"`
|
||||
}
|
||||
Reference in New Issue
Block a user