11 lines
160 B
Go
11 lines
160 B
Go
package template
|
|
|
|
const templateCommon = `package common
|
|
|
|
import "time"
|
|
|
|
func Unix2Datetime(t int64) string {
|
|
return time.Unix(t, 0).Format(time.DateTime)
|
|
}
|
|
`
|