blob: 24d47032c8aabf51caf7eeeae7de8525fe0251fb [file] [log] [blame]
// Copyright 2017 The Chromium OS 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 <base/logging.h>
#include "midis/daemon.h"
int main(int argc, char* argv[]) {
LOG(INFO) << "Starting MIDI native service\n";
midis::Daemon daemon;
daemon.Run();
return 0;
}