export interface RequestInterface {
    method: string;
    path: string;
    body?: {};
}
