Skip to content

Instantly share code, notes, and snippets.

@arjan
Created April 25, 2016 12:58
Show Gist options
  • Save arjan/61bfaedc7efda2482f51df7e41e4d032 to your computer and use it in GitHub Desktop.
Save arjan/61bfaedc7efda2482f51df7e41e4d032 to your computer and use it in GitHub Desktop.
Serialize Timex.DateTime to JSON automatically
defimpl Poison.Encoder, for: Timex.DateTime do
use Timex
def encode(d, _options) do
fmt = DateFormat.format!(d, "{ISO}")
"\"#{fmt}\""
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment