mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
14 lines
177 B
C++
14 lines
177 B
C++
// (C) 2018 University of Bristol. See License.txt
|
|
|
|
/*
|
|
* Server.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Networking/Server.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
Server(argc, argv).start();
|
|
}
|