()
| 9 | use crate::{prelude::*, types::sha256_base64}; |
| 10 | |
| 11 | pub fn timerange_epoch() -> Geotime { |
| 12 | use chrono::TimeZone; |
| 13 | let dt = chrono::Utc.with_ymd_and_hms(1970, 1, 1, 0, 0, 0).unwrap(); |
| 14 | Geotime::from(&dt) |
| 15 | } |
| 16 | |
| 17 | pub fn topic(name: &str) -> RepoTopic { |
| 18 | let added = chrono::Utc::now(); |
no outgoing calls
no test coverage detected