patrickdavey/caster

View on GitHub
web/feeds/feed_client.ex

Summary

Maintainability
Test Coverage
defmodule Caster.FeedClient do
  @moduledoc """
    Used to define common behaviours which all feeds must implement
  """
  @doc "fetches data from an external source"
  @callback fetch! :: String.t
end