Package `Utc` type conflicts with platform `Utc` type, making it unusable.
imclerran opened this issue · comments
Package should remove Utc
and UtcTime
and simply provide nanoseconds in its API.
Conversion between the types can then be done with:
DateTime.toNanosSinceEpoch |> Utc.fromNanosSinceEpoch
andUtc.toNanosSinceEpoch |> DateTime.fromNanosSinceEpoch
using the platform provided Utc
functions.
Pull request #17 resolves this issue.