Files
MP-SPDZ/Server.cpp
2018-03-07 12:25:45 +00:00

14 lines
198 B
C++

// (C) 2018 University of Bristol, Bar-Ilan University. See License.txt
/*
* Server.cpp
*
*/
#include "Networking/Server.h"
int main(int argc, char** argv)
{
Server(argc, argv).start();
}