mirror of
https://github.com/eggjs/egg.git
synced 2024-12-04 07:14:30 +00:00
6 lines
100 B
JavaScript
6 lines
100 B
JavaScript
module.exports = app => {
|
|
app.get('/', function*() {
|
|
this.body = 'Hi, this is home';
|
|
});
|
|
};
|