19 lines
311 B
C++
19 lines
311 B
C++
|
|
|
|
#include <cstring>
|
|
#include <expected>
|
|
#include <iostream>
|
|
#include <span>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <google/protobuf/message.h>
|
|
|
|
#include <rcpclient.hpp>
|
|
|
|
//google::protobuf::Message
|
|
|
|
std::expected<void, std::string> Transaction(const google::protobuf::Message& m) {
|
|
return {};
|
|
}
|