2019-08-20 16:42:52 +00:00
|
|
|
// node native scope
|
|
|
|
import * as https from 'https';
|
|
|
|
|
2019-08-20 16:43:15 +00:00
|
|
|
export { https };
|
2019-08-20 16:42:52 +00:00
|
|
|
|
|
|
|
// third party scope
|
|
|
|
import express from 'express';
|
2019-08-20 17:02:13 +00:00
|
|
|
import httpProxyMiddleware from 'http-proxy-middleware';
|
2019-08-20 16:42:52 +00:00
|
|
|
|
2019-08-20 16:43:15 +00:00
|
|
|
export { express, httpProxyMiddleware };
|