blob: f01fbeb791be3daa3da73f886c794486b545b377 [file] [log] [blame]
// Copyright 2023 The Fuchsia 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 <android-base/properties.h>
namespace android {
namespace base {
std::string GetProperty(const std::string& key, const std::string& default_value) {
return default_value;
}
bool GetBoolProperty(const std::string& key, bool default_value) { return default_value; }
} // namespace base
} // namespace android