/**
 * Interfaces - What the API expects and what it returns
 *
 * Generic API Response interface.
 */
export interface ApiResponse {
    message: string
}
