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