diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-18 14:21:50 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-18 15:08:32 -0400 |
commit | f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4 (patch) | |
tree | 6ba40b5d404c76f1f8be55f0e592afab83ab6563 /src/web_service/telemetry_json.cpp | |
parent | bea9ed2548abfa738d3381a152e7ece42efbf08d (diff) |
common/telemetry: Migrate namespace into the Common namespace
Migrates the Telemetry namespace into the Common namespace to make the
code consistent with the rest of our common code.
Diffstat (limited to 'src/web_service/telemetry_json.cpp')
-rw-r--r-- | src/web_service/telemetry_json.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web_service/telemetry_json.cpp b/src/web_service/telemetry_json.cpp index 7a480e33c9..c89a3a0db1 100644 --- a/src/web_service/telemetry_json.cpp +++ b/src/web_service/telemetry_json.cpp @@ -10,6 +10,8 @@ namespace WebService { +namespace Telemetry = Common::Telemetry; + struct TelemetryJson::Impl { Impl(std::string host, std::string username, std::string token) : host{std::move(host)}, username{std::move(username)}, token{std::move(token)} {} |