1
0
mirror of https://github.com/ManyakRus/starter.git synced 2025-11-27 23:18:34 +02:00
Files
starter/postgres_func/postgres_func.go
Nikitin Aleksandr e41e809e0d new
2023-03-17 11:20:09 +03:00

12 lines
166 B
Go

package postgres_func
import "time"
func StringSQLTime(time1 time.Time) string {
Otvet := ""
Otvet = "'" + time1.Format(time.RFC3339Nano) + "'"
return Otvet
}