docstore/pkg/core/helper.go
2019-05-04 21:58:02 +02:00

15 lines
181 B
Go

// Copyright (C) 2019 Marius Schellenberger
package core
import (
"time"
)
const (
fileFmt = "20060102_150405"
)
func FileName() string {
return time.Now().Format(fileFmt)
}