blob: 79a19f70a01b77192f8429148a3be7d411cf3aa4 [file] [log] [blame]
// Copyright 2019 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 "src/developer/cmd/tasks/quit_task.h"
namespace cmd {
QuitTask::QuitTask(async_dispatcher_t* dispatcher) : Task(dispatcher) {}
QuitTask::~QuitTask() = default;
zx_status_t QuitTask::Execute(Command command, Task::CompletionCallback callback) {
return ZX_ERR_STOP;
}
} // namespace cmd