# go-strftime **Repository Path**: xu_dazhous_spring/go-strftime ## Basic Information - **Project Name**: go-strftime - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README go-strftime =========== go implementation of strftime ## Example ``` package main import ( "fmt" "time" strftime "github.com/jehiah/go-strftime" ) func main() { t := time.Unix(1340244776, 0) utc, _ := time.LoadLocation("UTC") t = t.In(utc) fmt.Println(strftime.Format("%Y-%m-%d %H:%M:%S", t)) // Output: // 2012-06-21 02:12:56 } ```