Octane API Client
Loading...
Searching...
No Matches
config.h
Go to the documentation of this file.
1
11#ifndef OCTANE_API_CLIENT_CONFIG_H_
12#define OCTANE_API_CLIENT_CONFIG_H_
13
14namespace octane {
16 constexpr auto LIBRARY_NAME = "Octane API Client";
23 constexpr auto LIBRARY_VERSION = "v0.1.0";
24
26 constexpr auto DEFAULT_API_TOKEN = "mock";
28 constexpr auto DEFAULT_API_ORIGIN = "http://localhost:3000";
30 constexpr auto DEFAULT_API_BASE_URL = "/api/v1";
31}; // namespace octane
32
33#endif // OCTANE_API_CLIENT_CONFIG_H_
Definition: api_client.cpp:20
constexpr auto DEFAULT_API_TOKEN
Default API token.
Definition: config.h:26
constexpr auto LIBRARY_VERSION
Library version.
Definition: config.h:23
constexpr auto LIBRARY_NAME
Definition: config.h:16
constexpr auto DEFAULT_API_ORIGIN
Default API origin.
Definition: config.h:28
constexpr auto DEFAULT_API_BASE_URL
Default base URL.
Definition: config.h:30