9 lines
247 B
HolyC
9 lines
247 B
HolyC
if (!StrICmp("/api/v1/instance", @slon_http_request_path(session))) {
|
|
session->send(db->o("instance"));
|
|
return;
|
|
}
|
|
|
|
if (!StrICmp("/api/v2/instance", @slon_http_request_path(session))) {
|
|
@slon_api_v2_instance_get(session);
|
|
return;
|
|
}
|