mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
09c219fb6d
* Playing around with pre-request hooks * Added response hooks * More flow types * Flow types on wrapper.js * Flow types on plugin folder * Basic tests for plugin hooks * Make DB initilize for all tests no matter what * Touch
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
// @flow
|
|
import * as _app from './app';
|
|
import * as _request from './request';
|
|
import * as _response from './response';
|
|
|
|
export const app = _app;
|
|
export const request = _request;
|
|
export const response = _response;
|