import { execSync } from 'child_process';

export function gitCommit(): void {
    try {
        execSync('git add .', { stdio: 'inherit' });
        execSync('git commit -m ":tada: Zenith Gen CLI Initial Commit"', {
            stdio: 'inherit',
        });
    } catch (error) {
        console.log(error);
    }
}
