mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
20 lines
406 B
Ruby
20 lines
406 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'environment_extension'
|
|
require_relative 'environment/calculators'
|
|
|
|
module Spree
|
|
module Core
|
|
class Environment
|
|
include EnvironmentExtension
|
|
|
|
attr_accessor :calculators, :payment_methods, :preferences
|
|
|
|
def initialize
|
|
@calculators = Calculators.new
|
|
@preferences = Spree::AppConfiguration.new
|
|
end
|
|
end
|
|
end
|
|
end
|