This adds a stub implementation for the storage_proxy. To simplify future implementation, it takes the passed parameter and return the correct types with fixed values. Signed-off-by: Amnon Heiman <amnon@cloudius-systems.com>
17 lines
233 B
C++
17 lines
233 B
C++
/*
|
|
* Copyright 2015 Cloudius Systems
|
|
*/
|
|
|
|
#ifndef API_STORAGE_PROXY_HH_
|
|
#define API_STORAGE_PROXY_HH_
|
|
|
|
#include "api.hh"
|
|
|
|
namespace api {
|
|
|
|
void set_storage_proxy(http_context& ctx, routes& r);
|
|
|
|
}
|
|
|
|
#endif /* API_STORAGE_PROXY_HH_ */
|