export interface Follow {
    id: string;
    projectId: string;
    followerId: string;
    followedId: string;
    createdAt: Date;
}
