mirror of
https://github.com/UltraCoderRU/court_monitor.git
synced 2026-01-28 02:15:12 +00:00
12 lines
301 B
C++
12 lines
301 B
C++
#ifndef COURT_MONITOR_COURT_API_H
|
|
#define COURT_MONITOR_COURT_API_H
|
|
|
|
#include <nlohmann/json_fwd.hpp>
|
|
|
|
#include <string_view>
|
|
|
|
nlohmann::json findCases(const std::string_view& name);
|
|
|
|
nlohmann::json getCaseDetails(int courtId, const std::string_view& caseNumber);
|
|
|
|
#endif // COURT_MONITOR_COURT_API_H
|