Packages

Streaming API built upon ElasticSearch's percolation.

Current section

Files

Jump to
funnel lib funnel uuid.ex
Raw

lib/funnel/uuid.ex

defmodule Funnel.Uuid do
@module_doc """
Wrapper around uuid library.
"""
@doc """
Returns a sweet uuid.
"""
def generate do
UUID.uuid4(:hex)
end
end