mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 21:48:11 -05:00
12 lines
125 B
C++
12 lines
125 B
C++
/*
|
|
* Server.cpp
|
|
*
|
|
*/
|
|
|
|
#include "Networking/Server.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
Server(argc, argv).start();
|
|
}
|