mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-12 12:54:48 +08:00
28 lines
390 B
JavaScript
28 lines
390 B
JavaScript
|
import interfaceCaseModel from '../models/interfaceCase.js';
|
||
|
import baseController from './base.js';
|
||
|
import yapi from '../yapi.js';
|
||
|
|
||
|
class interfaceCaseController extends baseController{
|
||
|
constructor(ctx) {
|
||
|
super(ctx);
|
||
|
this.Model = yapi.getInst(interfaceCaseModel);
|
||
|
}
|
||
|
|
||
|
list(ctx){
|
||
|
|
||
|
}
|
||
|
|
||
|
get(ctx){
|
||
|
|
||
|
}
|
||
|
|
||
|
up(ctx){
|
||
|
|
||
|
}
|
||
|
|
||
|
del(ctx){
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|