blob: 042953b1477a4e7986f647648e20c0d3fb230440 [file] [log] [blame]
Patrick Venture00887592018-12-11 10:57:06 -08001#pragma once
2
3#include "blob_interface.hpp"
4
5class BlobHandler : public BlobInterface
6{
7 public:
8 BlobHandler() = default;
9
10 std::vector<std::string> getBlobList() override;
11};