Files
tidb/br/pkg/stream/util.go

14 lines
227 B
Go

// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0.
package stream
import (
"time"
)
const DATE_FORMAT = "2006-01-02 15:04:05.999999999 -0700"
func FormatDate(ts time.Time) string {
return ts.Format(DATE_FORMAT)
}