module PinPress # A template for a pin; even though # currently empty, allows for future # flexibility. class PinTemplate < Template # Initializes a new Pin Template. # @param [Hash] params # @return [void] def initialize(params = {}) super(params) end end end