11 lines
314 B
D
11 lines
314 B
D
module data_api;
|
|
|
|
import handy_http_primitives;
|
|
import handy_http_handlers.path_handler : GetMapping;
|
|
import handy_http_data;
|
|
import util.money;
|
|
|
|
@GetMapping("/api/currencies")
|
|
void handleGetCurrencies(ref ServerHttpRequest request, ref ServerHttpResponse response) {
|
|
writeJsonBody(response, ALL_CURRENCIES);
|
|
} |