feat: use gpt to create project, readme

This commit is contained in:
2025-09-30 15:39:32 +08:00
parent e23d5e829f
commit 99a97139df
50 changed files with 7476 additions and 0 deletions

24
shared/visit.ts Normal file
View File

@@ -0,0 +1,24 @@
export type VisitId = string;
export interface VisitLocation {
country: string;
city?: string;
lat: number;
lng: number;
}
export interface VisitDateRange {
start: string;
end?: string;
}
export interface VisitDto {
id: VisitId;
location: VisitLocation;
date: VisitDateRange;
notes?: string;
tags?: string[];
photos?: string[];
createdAt: string;
updatedAt: string;
}