blob: ebb30223c860afb41ba0c3112617d91528158ca8 [file] [log] [blame] [edit]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "vtpm/commands/null_command.h"
#include <string>
#include <utility>
#include <base/functional/callback.h>
namespace vtpm {
void NullCommand::Run(const std::string& command,
CommandResponseCallback callback) {
std::move(callback).Run("");
}
} // namespace vtpm