#include "common/common/thread_impl.h" #include "common/filesystem/filesystem_impl.h" #include "exe/platform_impl.h" namespace Envoy { PlatformImpl::PlatformImpl() : thread_factory_(std::make_unique()), file_system_(std::make_unique()) {} PlatformImpl::~PlatformImpl() = default; } // namespace Envoy