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