config.h
Go to the documentation of this file.
1 #ifndef HTTP_CONFIG_H
2 #define HTTP_CONFIG_H
3 
4 #include <string>
5 #include "types.h"
6 
7 namespace dnai {
8  namespace http {
9  struct Config {
10  std::string base_url;
12  QList<InterceptorFunction> interceptors;
13  };
14  }
15 }
16 
17 #endif // HTTP_CONFIG_H
QMap< QString, QString > Headers
Definition: types.h:8
std::string base_url
Definition: config.h:10
Headers headers
Definition: config.h:11
QList< InterceptorFunction > interceptors
Definition: config.h:12
Definition: api.h:13
Definition: config.h:9