mirror of
https://github.com/eggjs/egg.git
synced 2024-12-04 07:14:30 +00:00
11 lines
344 B
JavaScript
11 lines
344 B
JavaScript
'use strict';
|
|
|
|
module.exports = function* () {
|
|
this.body = `<ul>
|
|
<li>Download <a href="/public/hi.txt">hi.txt</a>.</li>
|
|
<li>Download <a href="/public/404.txt">404.txt</a>.</li>
|
|
<li>Download <a href="/public/蛋蛋Web框架.txt">蛋蛋Web框架.txt</a>.</li>
|
|
<li>Download <a href="/public/foo.js">foo.js</a>.</li>
|
|
</ul>`;
|
|
};
|