• This project
    • Loading...
  • Sign in

fe / static-ci · 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
  • static-ci
  • apps
  • api
  • index.js
  • 单独保存sourcemap并提供接口访问
    6bb36875
    by 陈峰
    2017-10-10 14:26:53 +0800  
    Browse Files
index.js 189 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/**
 * web ui 模块
 * 
 * @author: jiang
 */

import path from 'path';
import Koa from 'koa';

import routers from './routers'

const app = new Koa();


routers(app);

export default app;