mirror of https://github.com/fantasticit/think.git
14 lines
271 B
JavaScript
14 lines
271 B
JavaScript
|
"use strict";
|
||
|
exports.__esModule = true;
|
||
|
exports.FileApiDefinition = void 0;
|
||
|
exports.FileApiDefinition = {
|
||
|
/**
|
||
|
* 上传文件
|
||
|
*/
|
||
|
upload: {
|
||
|
method: 'Post',
|
||
|
server: 'upload',
|
||
|
client: function () { return '/file/upload'; }
|
||
|
}
|
||
|
};
|