blob: 0612b3b7b76dca46ea1c68b6e68d654239ae8ba0 [file] [log] [blame]
// Copyright 2018 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.
#ifndef PERIDOT_BIN_LEDGER_APP_SERIALIZATION_VERSION_H_
#define PERIDOT_BIN_LEDGER_APP_SERIALIZATION_VERSION_H_
#include <lib/fxl/strings/string_view.h>
namespace ledger {
// The serialization version of anything Ledger stores on local storage
// (directory structure, object/LevelDb serialization).
inline constexpr fxl::StringView kSerializationVersion = "29";
} // namespace ledger
#endif // PERIDOT_BIN_LEDGER_APP_SERIALIZATION_VERSION_H_