1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-07 01:54:16 +01:00

16 lines
294 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Items that can be added to the shopping cart
module CartItem; end
# This is an abstract class implemented by classes that can be added to the shopping cart
class CartItem::BaseItem
def price
{ elements: {}, amount: 0 }
end
def name
''
end
end