mirror of
				https://github.com/Telecominfraproject/wlan-cloud-owprov.git
				synced 2025-10-31 10:37:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			352 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			352 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //
 | |
| // Created by stephane bourque on 2021-08-23.
 | |
| //
 | |
| 
 | |
| #include "RESTAPI_contact_list_handler.h"
 | |
| 
 | |
| #include "RESTAPI_db_helpers.h"
 | |
| #include "RESTObjects/RESTAPI_ProvObjects.h"
 | |
| #include "StorageService.h"
 | |
| 
 | |
| namespace OpenWifi {
 | |
| 	void RESTAPI_contact_list_handler::DoGet() {
 | |
| 		return ListHandler<ContactDB>("contacts", DB_, *this);
 | |
| 	}
 | |
| } // namespace OpenWifi
 | 
