Files
electron-egg/app/router/example.js
gaoshuaixing 100b16152e example
2020-12-23 18:34:43 +08:00

10 lines
242 B
JavaScript

'use strict';
/**
* @param {Egg.Application} app - egg application
*/
module.exports = app => {
const { router, controller } = app;
// open local dir
router.post('/api/v1/example/openLocalDir', controller.v1.example.openLocalDir);
};