Current section
Files
Jump to
Current section
Files
lib/github_trend/repo.ex
defmodule GithubTrendEx.Repo do
@moduledoc """
The struct repersenting a Github Repo
"""
defstruct [
:name,
:url,
:description,
:language,
:stars,
:forks,
:contributors
]
end