mirror of
https://github.com/vlang/v.git
synced 2025-08-03 01:37:24 -04:00
7 lines
178 B
V
7 lines
178 B
V
module time
|
|
|
|
// from_json_string implements a custom decoder for json2
|
|
pub fn (mut t Time) from_json_string(raw_string string) ! {
|
|
t = parse_rfc3339(raw_string) or { Time{} }
|
|
}
|