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_products(), to: Products, as: :new
defdelegate add_product(product, products), to: Products, as: :add
defdelegate get_product(name, products), to: Products, as: :get
defdelegate find_product(regexp, products, fields), to: Products, as: :find
end