/// \file StorageClient.cpp /// \brief Opaque interface to file-related operations // // This file is distributed under the MIT License. See LICENSE.md for details. // #include "revng/Storage/StorageClient.h" #include "LocalStorageClient.h" llvm::Expected> revng::StorageClient::fromPathOrURL(llvm::StringRef URL) { revng_assert(not URL.empty()); return std::make_unique(URL); }