mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
438a6e1464
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
22 lines
437 B
C++
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
|