mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
20 lines
236 B
C++
20 lines
236 B
C++
#ifndef __LIB_ABYSS_HPP__
|
|
#define __LIB_ABYSS_HPP__
|
|
#include <abyss/server.hpp>
|
|
#include <abyss/client.hpp>
|
|
|
|
namespace abyss
|
|
{
|
|
struct Globals
|
|
{
|
|
Globals()
|
|
{
|
|
}
|
|
~Globals()
|
|
{
|
|
}
|
|
};
|
|
} // namespace abyss
|
|
|
|
#endif
|