/*
 * module Index
 */
function MiyabiModuleIndex(){
  try {
    this.constructor = MiyabiModule;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiModuleIndex.prototype = new MiyabiModule;


/*
 * action Index
 */
function MiyabiActionIndexIndex(moduel){
  try {
    this.constructor = MiyabiAction;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiActionIndexIndex.prototype = new MiyabiAction;


/*
 * view Index
 */
function MiyabiViewIndexIndex(module){
  try {
    this.constructor = MiyabiView;
    this.constructor();
  } catch(e){
    this.errorHandler(e);
  }
}
MiyabiViewIndexIndex.prototype = new MiyabiView;

