clia-time 0.3.10

A personal temporary time crate, using tz-rs to get local offset.
Documentation
//! A fallback for any OS not covered.

use crate::{OffsetDateTime, UtcOffset};

pub(super) fn local_offset_at(_datetime: OffsetDateTime) -> Option<UtcOffset> {
    None
}