blob: 84b9b31ddd3d49cbc56551bbe1746dd99a722b93 (
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 = "::1";
constexpr uint16_t echo_port = 4322;
}
|