blob: 799e8c1423f25a2e3f7ab3ae048588124e2e2618 [file] [log] [blame]
Alexei Frolov80246792020-11-05 21:12:45 -08001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
Alexei Frolov80246792020-11-05 21:12:45 -080015#include "pw_log/log.h"
Alexei Frolovd3e5cb72021-01-08 13:08:45 -080016#include "pw_rpc_system_server/rpc_server.h"
Alexei Frolov80246792020-11-05 21:12:45 -080017#include "pw_unit_test/unit_test_service.h"
18
Alexei Frolov80246792020-11-05 21:12:45 -080019namespace {
20
Alexei Frolovd3e5cb72021-01-08 13:08:45 -080021pw::unit_test::UnitTestService unit_test_service;
Alexei Frolov80246792020-11-05 21:12:45 -080022
Alexei Frolov80246792020-11-05 21:12:45 -080023} // namespace
24
Alexei Froloveb94e962020-12-29 16:15:40 -080025int main() {
26 pw::rpc::system_server::Init();
27 pw::rpc::system_server::Server().RegisterService(unit_test_service);
Alexei Frolov80246792020-11-05 21:12:45 -080028
29 PW_LOG_INFO("Starting pw_rpc server");
Alexei Froloveb94e962020-12-29 16:15:40 -080030 pw::rpc::system_server::Start();
Alexei Frolov80246792020-11-05 21:12:45 -080031
32 return 0;
33}