export interface bodyRequestSync {
    nameModule: string;
    pathModule: pathModule[];
}
export interface pathModule {
    method: string;
    path: string;
    function: string;
    description: string;
}
