controller.js 458 Bytes
/*
 * @Author: Targaryen
 * @Date: 2017-04-26 17:19:19
 * @Last Modified by: Targaryen
 * @Last Modified time: 2017-04-26 17:46:13
 */
'use strict';

import {Controller} from 'yoho-mvc';
import {
    NavView
} from './view';
import {
    Guang
} from './model';

class IndexController extends Controller {
    constructor() {
        super();
        this.navView = new NavView();
        this.guang = new Guang();
    }
}

module.exports = IndexController;