mirror of
https://github.com/nxshock/logwriter.git
synced 2025-07-02 00:23:41 +05:00
13 lines
129 B
Go
13 lines
129 B
Go
package logwriter
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
defaultTimeFormat = "02.01.06 15:04:05"
|
|
)
|
|
|
|
var (
|
|
defaultTimeZone = time.Local
|
|
)
|