chromium/chromeos/ash/components/file_manager/indexing/index_storage.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chromeos/ash/components/file_manager/indexing/index_storage.h"

namespace ash::file_manager {

IndexStorage::IndexStorage() {}

IndexStorage::~IndexStorage() {}

bool IndexStorage::Init() {
  return true;
}

bool IndexStorage::Close() {
  return true;
}

}  // namespace ash::file_manager