Packages

LowEndInsight is a simple 'bus-factor' risk analysis library for Open Source Software which is managed within a Git repository. Provide the git URL and the library will respond with a basic Elixir Map structure report.

Current section

Files

Jump to
lowendinsight lib contributor.ex
Raw

lib/contributor.ex

defmodule Contributor do
defstruct name: "",
email: "",
count: 0,
merges: 0,
commits: []
@type t :: %__MODULE__{
name: String.t(),
email: String.t(),
count: integer,
merges: integer,
commits: [String.t()]
}
end