Explicitly import time/tzdata (#384)

This commit is contained in:
Neil O'Toole 2024-01-29 12:55:37 -07:00 committed by GitHub
parent 05358ca3b9
commit edea882789
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@ package timez
import ( import (
"strings" "strings"
"time" "time"
_ "time/tzdata" // Load tzdata: it's not included in all distros, e.g. Alpine.
"github.com/neilotoole/sq/libsq/core/errz" "github.com/neilotoole/sq/libsq/core/errz"
) )