904a6ab962
FossilOrigin-Name: c62e9f89327b8b31d2554e6bb8eb41495db75859a16752760a93c2814819158b
16 lines
283 B
C++
16 lines
283 B
C++
/*
|
|
* Wormhole - Federated social network
|
|
* Licensed under BSD 3-Clause. See LICENSE
|
|
*/
|
|
|
|
#ifndef WH_VERSION_H
|
|
#define WH_VERSION_H
|
|
|
|
#include <string_view>
|
|
|
|
namespace Wormhole
|
|
{
|
|
constexpr std::string_view version_string = "Wormhole development build";
|
|
}
|
|
|
|
#endif // WH_VERSION_H
|