bootstrap/template/template_common.go

11 lines
160 B
Go
Raw Normal View History

2023-01-01 15:46:41 +00:00
package template
const templateCommon = `package common
import "time"
func Unix2Datetime(t int64) string {
return time.Unix(t, 0).Format(time.DateTime)
}
`