ex_tmdb v0.1.0 ExTmdb View Source

Documentation for ExTmdb.

Link to this section Summary

Functions

Prints out the base url with default version (V3)

Prints out the current project version

Link to this section Functions

Link to this function endpoint_url(version \\ 3) View Source
endpoint_url(String.t()) :: String.t()

Prints out the base url with default version (V3)

Examples

iex> ExTmdb.endpoint_url()
"http://localhost:1234/3"

iex> ExTmdb.endpoint_url(4)
"http://localhost:1234/4"

Prints out the current project version

Examples

iex> ExTmdb.version()
"0.1.0"