mirror of
https://github.com/ManyakRus/starter.git
synced 2025-11-28 23:20:10 +02:00
12 lines
166 B
Go
12 lines
166 B
Go
|
|
package postgres_func
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
func StringSQLTime(time1 time.Time) string {
|
||
|
|
Otvet := ""
|
||
|
|
|
||
|
|
Otvet = "'" + time1.Format(time.RFC3339Nano) + "'"
|
||
|
|
|
||
|
|
return Otvet
|
||
|
|
}
|