Skip to content

Commit

Permalink
dont reimport twice systemtime
Browse files Browse the repository at this point in the history
  • Loading branch information
kylerchin committed Oct 10, 2024
1 parent a69291c commit da82b89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
// Author(s): Jacob Whitecotton, Kyler Chin
// Version: 2024-09-10

use gtfs_realtime::vehicle_position::*;
use gtfs_realtime::*;
use serde::Deserialize;
use serde_json::from_str;
use std::error::Error;
use chrono::Datelike;
use std::time::SystemTime;
use chrono_tz::Tz;
// Author(s): Jacob Whitecotton, Kyler Chin
// Version: 4/6/2024

use std::time::{SystemTime, UNIX_EPOCH};


/**
* Fetches jsonp data from ucirvine's transit feed and converts it into gtfs_rt
*/
Expand Down

0 comments on commit da82b89

Please sign in to comment.