Local time support (#318)

This commit is contained in:
Thomas Pelletier
2019-10-25 14:28:32 -04:00
committed by GitHub
parent 3a4d7af89e
commit 5e74bb91ea
3 changed files with 110 additions and 5 deletions
+2
View File
@@ -140,6 +140,8 @@ func tomlValueStringRepresentation(v interface{}, indent string, arraysOneElemen
return value.String(), nil
case LocalDateTime:
return value.String(), nil
case LocalTime:
return value.String(), nil
case nil:
return "", nil
}