Packages

Handle culinary recipes and calculate their nutritional value (pre-alpha / WIP).

Current section

Files

Jump to
ex_kcal lib ex_kcal alcohols.ex
Raw

lib/ex_kcal/alcohols.ex

defmodule ExKcal.Alcohols do
defstruct(
total: 0,
ethanol: 0,
other: 0
)
@type t :: %__MODULE__{total: non_neg_integer(), ethanol: non_neg_integer(), other: non_neg_integer()}
end