mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-27 05:30:14 +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){
|
|
|
|
}
|
|
|
|
|
|
} |