mock.js 452 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * @author oldj
  3. * @blog http://oldj.net
  4. */
  5. 'use strict';
  6. exports.hosts = {
  7. sys: {
  8. content: 'test'
  9. },
  10. custom: [{
  11. title: 'c1',
  12. content: '1111',
  13. is_remote: false,
  14. url: ''
  15. }, {
  16. title: 'c2',
  17. content: '2222',
  18. is_remote: false,
  19. url: ''
  20. }, {
  21. title: 'c3',
  22. content: '3333',
  23. is_remote: true,
  24. url: 'http://test.com/t.txt'
  25. }]
  26. };