blob: ce2b2d77024e6245ad40c216c3d2de201927932a [file] [log] [blame]
#pragma once
#include <string>
#include <vector>
class BlobInterface
{
public:
virtual ~BlobInterface() = default;
/**
* Get a list of the blob_ids provided by the BMC.
*
* @return list of strings, each representing a blob_id returned.
*/
virtual std::vector<std::string> getBlobList() = 0;
};