insomnia/app/plugins/context/index.js
Gregory Schier 09c219fb6d More Plugin Hooks (#352)
* 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
2017-07-19 18:55:40 -07:00

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;