mirror of
https://github.com/Telecominfraproject/wlan-cloud-owprov.git
synced 2026-03-20 03:40:31 +00:00
11 lines
303 B
C++
11 lines
303 B
C++
//
|
|
// Created by stephane bourque on 2021-08-23.
|
|
//
|
|
|
|
#include "RESTAPI_venue_list_handler.h"
|
|
#include "RESTAPI/RESTAPI_db_helpers.h"
|
|
#include "StorageService.h"
|
|
|
|
namespace OpenWifi {
|
|
void RESTAPI_venue_list_handler::DoGet() { return ListHandler<VenueDB>("venues", DB_, *this); }
|
|
} // namespace OpenWifi
|