1 2 3 4 5 6 7 8 9 10 11 12 13 | 13 13 1 52 52 52 52 13 | 'use strict' import Container from './Container' import Logger from './Logger' export function create(conf, options) { var logger options = options || {} logger = new Logger(options) return new Container(conf, logger) } |