#ifndef SERVERSTATE_H
#define SERVERSTATE_H

struct ServerState final {
    bool running;
    
    ServerState();
};

#endif