mirror of
https://git.checksum.fail/alec/slon.git
synced 2025-12-08 20:19:56 +02:00
10 lines
253 B
HolyC
10 lines
253 B
HolyC
if (String.BeginsWith("/api/v1/notifications", session->path())) {
|
|
@slon_api_v1_notifications_get(session);
|
|
return;
|
|
}
|
|
|
|
if (String.BeginsWith("/api/v2/notifications", session->path())) {
|
|
@slon_api_v2_notifications_get(session);
|
|
return;
|
|
}
|