chore: Integrate concrete-compiler to the mono-repo

This commit is contained in:
Quentin Bourgerie
2023-03-03 09:20:01 +01:00
parent a62b3b1d74
commit f975415e86
648 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
#include <concretelang/ServerLib/ServerLambda.h>
void answer_client(MyConnection conn) {
std::istream from_client = conn.istream();
std::ostream to_client = conn.ostream();
auto err = serverLambda.read_call_write(serverInput, serverOutput);
if (err) {
throw MyException();
}
}