mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
194 B
Ruby
14 lines
194 B
Ruby
# frozen_string_literal: false
|
|
|
|
module Calculator
|
|
class None < Spree::Calculator
|
|
def self.description
|
|
I18n.t(:none)
|
|
end
|
|
|
|
def compute(_object = nil)
|
|
0
|
|
end
|
|
end
|
|
end
|