blob: 4b7f512595a2f155dd443dc0bbf9a1a4828204e4 [file] [log] [blame]
// Copyright 2020 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 "runtime_probe/functions/generic_network.h"
#include <optional>
namespace runtime_probe {
std::optional<std::string> GenericNetworkFunction::GetNetworkType() const {
return std::nullopt;
}
} // namespace runtime_probe