initial commit

This commit is contained in:
Bacruru Sakaguchi
2025-09-12 17:10:13 +07:00
commit 9e5e214944
57 changed files with 1538 additions and 0 deletions

10
pythonapp/Libs/git.py Normal file
View File

@@ -0,0 +1,10 @@
import subprocess
class git:
@staticmethod
def clone(url, output_path = None, git = 'git'):
command = [git, 'clone', url]
if output_path: command.append(output_path)
result = subprocess.run(command)
return result