Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
netdata-1
netdata-1
/
src
/
web
/
api
/
v2
/
api_v2_versions.c
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
c
7 lines
236 Bytes
Copy permalink
Copy
Raw
1
// SPDX-License-Identifier: GPL-3.0-or-later
2
3
#include
"api_v2_calls.h"
4
5
int
api_v2_versions
(
RRDHOST
*
host
__maybe_unused
,
struct
web_client
*
w
,
char
*
url
)
{
6
return
api_v2_contexts_internal
(
host
,
w
,
url
,
CONTEXTS_V2_VERSIONS
,
0
);
7
}