- Add business routes and middleware\n- Update search and database services\n- Improve health check implementation\n- Update CI workflow configuration
16 lines
No EOL
266 B
TypeScript
16 lines
No EOL
266 B
TypeScript
export interface Business {
|
|
id: string;
|
|
name: string;
|
|
address: string;
|
|
phone: string;
|
|
description: string;
|
|
website?: string;
|
|
source: string;
|
|
rating: number;
|
|
location: {
|
|
lat: number;
|
|
lng: number;
|
|
};
|
|
}
|
|
|
|
export type BusinessData = Business;
|