fix: remove explicit type declaration for startedAt

This commit is contained in:
program-- 2022-11-11 15:53:16 -08:00
parent 02a614bc6d
commit f4ea9a169f
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ const (
)
// For Lua os.clock() impl
var startedAt time.Time = time.Now()
var startedAt = time.Now()
var errShaNotFound = errors.New("sha not found")
var errCmdNotSupported = errors.New("command not supported in scripts")