ipfs-chromium
terminating_requestor.h
1 #ifndef IPFS_TERMINATING_REQUESTOR_H_
2 #define IPFS_TERMINATING_REQUESTOR_H_
3 
4 #include "requestor.h"
5 
6 namespace ipfs::gw {
8  public:
9  using HandleOutcome = Requestor::HandleOutcome;
10  std::string_view name() const override;
11  HandleOutcome handle(RequestPtr) override;
12 };
13 } // namespace ipfs::gw
14 
15 #endif // IPFS_TERMINATING_REQUESTOR_H_
Definition: requestor.h:20
Definition: terminating_requestor.h:7