16f3e1bb03
some clients send the connection params with lowercase :/
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
'use strict'
|
|
let debug = require( 'debug' )
|
|
|
|
|
|
exports.init = async ( app, options ) => {
|
|
debug( 'speckle:modules' )( '💥\tInit core module' )
|
|
|
|
// Initialises the two main bulk upload/download endpoints
|
|
require( './rest/upload' )( app )
|
|
require( './rest/download' )( app )
|
|
} |