mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
12 lines
200 B
C++
12 lines
200 B
C++
#include "test_threads.h"
|
|
#include <future>
|
|
#include <functional>
|
|
#include <chrono>
|
|
|
|
using namespace std::chrono_literals;
|
|
|
|
int main(int argc, char** argv) {
|
|
int rc = test_threads();
|
|
return rc;
|
|
}
|