blob: 04819b0d99e276cc801c0e29544e03abc46cfb7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <string>
#include <cstdint>
#include <forstio/codec/schema.hpp>
#include <forstio/codec/simple.hpp>
namespace sch {
using namespace saw::schema;
using Echo = String;
}
namespace saw {
constexpr std::string echo_address = "127.0.0.1";
constexpr uint16_t echo_port = 4322;
}
|