1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-08 04:04:22 +02:00
lazygit/main.go

16 lines
206 B
Go
Raw Normal View History

2018-05-19 03:16:34 +02:00
package main
2018-06-02 00:35:49 +02:00
import (
"time"
)
// StartTime : The starting time of the app
var StartTime time.Time
2018-05-27 08:32:09 +02:00
2018-05-19 03:16:34 +02:00
func main() {
2018-05-21 14:34:02 +02:00
devLog("\n\n\n\n\n\n\n\n\n\n")
2018-06-02 00:35:49 +02:00
StartTime = time.Now()
verifyInGitRepo()
2018-05-19 09:04:33 +02:00
run()
2018-05-19 03:16:34 +02:00
}