mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-10 20:05:50 +02:00
10 lines
173 B
Go
10 lines
173 B
Go
package main
|
|
|
|
import "github.com/fatih/color"
|
|
|
|
func main() {
|
|
a, b := gitUpstreamDifferenceCount()
|
|
colorLog(color.FgRed, a, b)
|
|
devLog("\n\n\n\n\n\n\n\n\n\n")
|
|
run()
|
|
}
|