Created
March 23, 2013 07:04
-
-
Save polidog/5226753 to your computer and use it in GitHub Desktop.
正解版
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var app = module.exports = express(); | |
var routes = require('./routes') | |
, user = require('./routes/user') | |
, acount = require('./routes/account') | |
, http = require('http') | |
, path = require('path') | |
, redis = require('redis') | |
, fs = require('fs'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment