mirror of https://github.com/tidwall/tile38.git
fix: remove explicit type declaration for startedAt
This commit is contained in:
parent
02a614bc6d
commit
f4ea9a169f
|
@ -27,7 +27,7 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
// For Lua os.clock() impl
|
// For Lua os.clock() impl
|
||||||
var startedAt time.Time = time.Now()
|
var startedAt = time.Now()
|
||||||
|
|
||||||
var errShaNotFound = errors.New("sha not found")
|
var errShaNotFound = errors.New("sha not found")
|
||||||
var errCmdNotSupported = errors.New("command not supported in scripts")
|
var errCmdNotSupported = errors.New("command not supported in scripts")
|
||||||
|
|
Loading…
Reference in New Issue