Packages

A Pokéapi client for Elixir

Retired package: Deprecated

Current section

Files

Jump to
dexter lib dexter.ex
Raw

lib/dexter.ex

defmodule Dexter do
@moduledoc """
Main module
Links the cache with the rest of the application
"""
use Application
alias Dexter.Cache
@doc false
def start(_type, _args) do
Cache.start_link
end
end