mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-15 23:57:48 +00:00
15 lines
338 B
Ruby
15 lines
338 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Load our monkey-patches of the DFC Connector:
|
|
require "data_food_consortium/connector/connector"
|
|
|
|
# Our Rails engine
|
|
require "dfc_provider/engine"
|
|
|
|
# Custom data types
|
|
require "dfc_provider/supplied_product"
|
|
|
|
module DfcProvider
|
|
DataFoodConsortium::Connector::Importer.register_type(SuppliedProduct)
|
|
end
|