docstore/pkg/core/helper.go
2019-05-03 10:44:17 +02:00

13 lines
136 B
Go

package core
import (
"time"
)
const (
fileFmt = "20060102_150405"
)
func FileName() string {
return time.Now().Format(fileFmt)
}