#ifndef REQUEST_H
#define REQUEST_H

typedef struct req {
    int n;
    void* args[2];
} Request;

#endif