simpleRequesters

Undocumented in source.
enum simpleRequesters = q{ Json simpleNullRequest(HTTPMethod method, string route = "", string bucket = "") const @safe { prependEndpoint(endpoint, route); if (bucket.length) prependEndpoint(endpoint, bucket); return requestDiscordEndpointNull(method, route, bucket, requester); } Json simpleJsonRequest(T)(HTTPMethod method, T value, string route = "", string bucket = "") const @safe { prependEndpoint(endpoint, route); if (bucket.length) prependEndpoint(endpoint, bucket); return requestDiscordEndpointJson(method, value, route, bucket, requester); } };

Meta