1
0
mirror of https://github.com/ManyakRus/starter.git synced 2025-11-28 23:20:10 +02:00

сделал log

This commit is contained in:
Nikitin Aleksandr
2023-04-25 17:28:10 +03:00
parent e41e809e0d
commit 66e89131a4
99 changed files with 1992 additions and 450 deletions

View File

@@ -9,3 +9,12 @@ func StringSQLTime(time1 time.Time) string {
return Otvet
}
func StringSQLTime_WithoutTimeZone(time1 time.Time) string {
Otvet := ""
format := "2006-01-02T15:04:05.999999999+00:00"
Otvet = "'" + time1.Format(format) + "'"
return Otvet
}