mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
24 lines
364 B
JavaScript
24 lines
364 B
JavaScript
|
import interfaceColModel from '../models/interfaceCol.js';
|
||
|
import baseController from './base.js';
|
||
|
import yapi from '../yapi.js';
|
||
|
|
||
|
class interfaceColController extends baseController{
|
||
|
constructor(ctx) {
|
||
|
super(ctx);
|
||
|
this.Model = yapi.getInst(interfaceColModel);
|
||
|
}
|
||
|
|
||
|
list(ctx){
|
||
|
|
||
|
}
|
||
|
|
||
|
up(ctx){
|
||
|
|
||
|
}
|
||
|
|
||
|
del(ctx){
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|