aboutsummaryrefslogtreecommitdiff
path: root/internal/git/git.go
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-03-01 18:26:30 +1300
committerArslaan Pathan <[email protected]>2026-03-01 18:26:30 +1300
commit6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c (patch)
treee64bb850e322d827d7d8e8f36e05653f5e491acc /internal/git/git.go
downloadkiiro-6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c.tar.xz
kiiro-6cd1cd5f1dfdda4c43a272bee7b36cbb83f65a2c.zip
Initial commit
Diffstat (limited to 'internal/git/git.go')
-rw-r--r--internal/git/git.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/git/git.go b/internal/git/git.go
new file mode 100644
index 0000000..ed88e71
--- /dev/null
+++ b/internal/git/git.go
@@ -0,0 +1,7 @@
+package git
+
+import "os/exec"
+
+func Clone(url string, dest string) error {
+ return exec.Command("git", "clone", url, dest).Run()
+}