Packages

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

Current section

Files

Jump to
ex_kcal lib ex_kcal.ex
Raw

lib/ex_kcal.ex

defmodule ExKcal do
alias ExKcal.Products
defdelegate new(), to: Products
defdelegate add(product, products), to: Products
defdelegate get(name, products), to: Products
defdelegate find(regexp, products, fields), to: Products
end