mirror of
https://github.com/Telecominfraproject/wlan-cloud-owprov.git
synced 2025-10-30 18:18:03 +00:00
16 lines
365 B
C++
16 lines
365 B
C++
//
|
|
// Created by stephane bourque on 2021-08-23.
|
|
//
|
|
|
|
#include "RESTAPI_location_list_handler.h"
|
|
|
|
#include "RESTAPI/RESTAPI_db_helpers.h"
|
|
#include "RESTObjects/RESTAPI_ProvObjects.h"
|
|
#include "StorageService.h"
|
|
|
|
namespace OpenWifi {
|
|
|
|
void RESTAPI_location_list_handler::DoGet() {
|
|
return ListHandler<LocationDB>("locations", DB_, *this);
|
|
}
|
|
} // namespace OpenWifi
|