mirror of
https://github.com/ManyakRus/starter.git
synced 2025-11-24 22:53:52 +02:00
13 lines
223 B
Go
13 lines
223 B
Go
package postgres_func
|
|
|
|
import "time"
|
|
|
|
func StringSQLTime(time1 time.Time) string {
|
|
Otvet := ""
|
|
|
|
//Otvet = "'" + time1.Format(time.RFC3339Nano) + "'"
|
|
Otvet = "'" + time1.Format("20060102 15:04:05") + "'"
|
|
|
|
return Otvet
|
|
}
|