summaryrefslogtreecommitdiff
path: root/model/git.go
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-04-17 00:00:40 +0200
committerewy <ewy0@protonmail.com>2026-04-17 00:00:40 +0200
commit022072ce8bac114ea0a7b94132ed3b8630de2f90 (patch)
tree199fb99ab9e242b6eb195c2b1180e58caa4303d6 /model/git.go
parentfbdc2b9d849913ccf8dd7a9001012ce2d28cbd2f (diff)
* fix bug which prevented multiple sources from showing up in the tui at the same time
* add padding to bottom of sources * add git status panel to bottom of tui
Diffstat (limited to 'model/git.go')
-rw-r--r--model/git.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/model/git.go b/model/git.go
new file mode 100644
index 0000000..35d7557
--- /dev/null
+++ b/model/git.go
@@ -0,0 +1,6 @@
+package model
+
+type GitInfo struct {
+ Branch string
+ Insertions, Deletions, Changes int
+}