osquery-1/osquery/ev2/publisher.cpp
Filipe Manco 438a6e1464 Basic ev2 framework (#5401)
Summary:
Pull Request resolved: https://github.com/facebook/osquery/pull/5401

Extremely rough implementation of the basic componenets to get things going.

Blueprint issue #5158 .

Reviewed By: akindyakov

Differential Revision: D13779295

fbshipit-source-id: c7373794e8152ffea8a7c5d97f0c937bf97a2a0a
2019-01-29 09:30:20 -08:00

22 lines
437 B
C++

/**
* Copyright (c) 2018-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed as defined on the LICENSE file found in the
* root directory of this source tree.
*/
#include <osquery/ev2/publisher.h>
namespace osquery {
namespace ev2 {
Publisher::Publisher(std::string name) : name_(name) {}
const std::string& Publisher::name() const {
return name_;
}
} // namespace ev2
} // namespace osquery