blob: ca967eb7c28fc7cb68f2dc6231d2e85b0ad1df78 [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.
#ifndef SRC_STORAGE_FSHOST_FSHOST_FS_PROVIDER_H_
#define SRC_STORAGE_FSHOST_FSHOST_FS_PROVIDER_H_
#include "fdio.h"
namespace devmgr {
class FshostFsProvider : public FsProvider {
public:
zx::channel CloneFs(const char* path) override;
};
} // namespace devmgr
#endif // SRC_STORAGE_FSHOST_FSHOST_FS_PROVIDER_H_