app.json 395 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "model": {
  3. "posts": {
  4. "id": "number",
  5. "type": "string",
  6. "date": "date"
  7. }
  8. },
  9. "view": {
  10. "posts": {
  11. "init": "function",
  12. "load": "function",
  13. "html": "Post.html"
  14. }
  15. },
  16. "controller": {
  17. "posts": {
  18. "create": "post",
  19. "update": "post",
  20. "delete": "get",
  21. "read": "get"
  22. }
  23. }
  24. }