Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: go-best-practices/time-parse-format

Language: Go

Severity: Info

Category: Best Practices

Description

Make sure your code use a valid time format. See the official Go documentation for the valid time format.

Non-Compliant Code Examples

func main() {
    time.Parse("foobar", something)
    time.Parse("00", something_else);
}

Compliant Code Examples

func main() {
    time.Parse(time.ANSIC, something)
    time.Parse("2006-01-02", something_else)

    mytime := time.ANSIC
    time.Parse(mytime, another_thing)
}