v/vlib/time/json_decode.c.v
2025-08-02 14:07:29 +03:00

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{} }
}