blob: cb4aa4734bb70e0b0ce5287f14f8a5e01a4736e8 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <lib/async-loop/cpp/loop.h>
#include "garnet/bin/timezone/timezone.h"
#include "lib/app/cpp/startup_context.h"
#include "lib/fxl/logging.h"
namespace time_zone {
class MainService {
public:
MainService()
: app_context_(fuchsia::sys::StartupContext::CreateFromStartupInfo()) {
app_context_->outgoing().AddPublicService<fuchsia::timezone::Timezone>(
[this](fidl::InterfaceRequest<fuchsia::timezone::Timezone> request) {
timezone_.AddBinding(std::move(request));
});
}
private:
std::unique_ptr<fuchsia::sys::StartupContext> app_context_;
TimezoneImpl timezone_;
};
} // namespace time_zone
int main(int argc, char** argv) {
async::Loop loop(&kAsyncLoopConfigMakeDefault);
time_zone::MainService svc;
loop.Run();
return 0;
}