• This project
    • Loading...
  • Sign in

fe / yohobuywap-node · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohobuywap-node
  • public
  • js
  • guang
  • detail
  • controller.js
  • view-base
    5580aaf6
    by 郭成尧
    2017-05-02 16:26:11 +0800  
    Browse Files
controller.js 391 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * @Author: Targaryen
 * @Date: 2017-04-27 14:55:31
 * @Last Modified by: Targaryen
 * @Last Modified time: 2017-05-02 14:40:02
 */
'use strict';

import {Controller} from 'yoho-mvc';
import DetailView from './view';

class DetailController extends Controller {
    constructor() {
        super();

        this.detailView = new DetailView();
    }
}

module.exports = DetailController;