binginsist caacd09c38
feat: siteFile support custom control-cache (#4902)
Co-authored-by: yangbing <yangbing@immotors.com>
2022-03-16 09:31:39 +08:00

6 lines
100 B
JavaScript

module.exports = app => {
app.get('/', function*() {
this.body = 'Hi, this is home';
});
};