2021-01-23 15:13:08 +01:00
|
|
|
#ifndef GEMINISERVER_NETWORK_HPP
|
|
|
|
#define GEMINISERVER_NETWORK_HPP
|
|
|
|
|
|
|
|
|
|
|
|
namespace gemini {
|
|
|
|
/**
|
2021-02-17 14:07:50 +01:00
|
|
|
* \brief This class is used for all the network things for the server.
|
2021-01-23 15:13:08 +01:00
|
|
|
*/
|
|
|
|
class Network {
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif //GEMINISERVER_NETWORK_HPP
|