1 /*
2  * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include "restapi_location_strategy.h"
8 #include "service_locator.h"
9 
service_locator_envinit(void)10 void service_locator_envinit(void)
11 {
12 	/**
13 	 * Register service location strategy for reaching services using
14 	 * the FW Test API or any other REST API that presents a remotely
15 	 * reachable test interface to a DUT. Call requests are made using
16 	 * an HTTP based RPC layer.
17 	 */
18 	service_locator_register_strategy(restapi_location_strategy());
19 }
20