export type Commit = {
    title: string;
    isoDate: string;
    hash: string;
    fileNames: string[];
};
