mirror of
https://github.com/stashapp/CommunityScrapers.git
synced 2025-12-10 00:41:16 -06:00
7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
import { simpleGit, SimpleGitOptions } from "simple-git";
|
|
|
|
const options: Partial<SimpleGitOptions> = {
|
|
baseDir: `.`,
|
|
};
|
|
export const git = simpleGit(options);
|