添加后台热更新上传

This commit is contained in:
luying
2020-09-23 19:47:09 +08:00
parent 9f57e52445
commit 3f5fa47b1b
7 changed files with 401 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ import 'egg';
import ExportGmaccount from '../../../app/controller/gmaccount';
import ExportHome from '../../../app/controller/home';
import ExportLogin from '../../../app/controller/login';
import ExportUpload from '../../../app/controller/upload';
import ExportUsers from '../../../app/controller/users';
declare module 'egg' {
@@ -12,6 +13,7 @@ declare module 'egg' {
gmaccount: ExportGmaccount;
home: ExportHome;
login: ExportLogin;
upload: ExportUpload;
users: ExportUsers;
}
}