File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import type { RequestHandler } from '../lib';
20
20
21
21
// Check if the user defined any options
22
22
const args = arg ( {
23
- '--listen' : parseEndpoint ,
23
+ '--listen' : [ parseEndpoint ] ,
24
24
'-l' : '--listen' ,
25
25
'--help' : Boolean ,
26
26
'--version' : Boolean ,
@@ -142,15 +142,15 @@ function registerShutdown(fn: () => void) {
142
142
process . on ( 'exit' , wrapper ) ;
143
143
}
144
144
145
- function startEndpoint ( module : RequestHandler , endpoint : string ) {
145
+ function startEndpoint ( module : RequestHandler , endpoint : string [ ] ) {
146
146
const server = new http . Server ( serve ( module ) ) ;
147
147
148
148
server . on ( 'error' , ( err ) => {
149
149
console . error ( 'micro:' , err . stack ) ;
150
150
process . exit ( 1 ) ;
151
151
} ) ;
152
152
153
- server . listen ( endpoint , ( ) => {
153
+ server . listen ( ... endpoint , ( ) => {
154
154
const details = server . address ( ) ;
155
155
registerShutdown ( ( ) => {
156
156
console . log ( 'micro: Gracefully shutting down. Please wait...' ) ;
You can’t perform that action at this time.
0 commit comments