mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 22:17:57 -05:00
14 lines
198 B
C++
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();
|
|
}
|