#ifndef SRC_NSLOG_H_
#define SRC_NSLOG_H_

#include <string>

namespace nslog {

void Log(const std::string& message);

}  // namespace nslog

#endif  // SRC_NSLOG_H_
