1 /*
2  * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef RESTAPI_LOCATION_H
8 #define RESTAPI_LOCATION_H
9 
10 /* The default REST API URL. Can be overridden at build-time if an alterantive
11  * is required.
12  */
13 #ifndef RESTAPI_LOCATOR_API_URL
14 #define RESTAPI_LOCATOR_API_URL "http://127.0.0.1/api/v1/services/"
15 #endif
16 
17 #endif /* RESTAPI_LOCATION_STRATEGY_H */
18