mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-06 03:53:59 +02:00
16 lines
206 B
Go
16 lines
206 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// StartTime : The starting time of the app
|
|
var StartTime time.Time
|
|
|
|
func main() {
|
|
devLog("\n\n\n\n\n\n\n\n\n\n")
|
|
StartTime = time.Now()
|
|
verifyInGitRepo()
|
|
run()
|
|
}
|