mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 06:36:22 +00:00
8 lines
185 B
Ruby
8 lines
185 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Devuelve metadatos de cierto tipo
|
|
class MetadataFactory
|
|
def self.build(**args)
|
|
"Metadata#{args[:type].camelcase}".constantize.new(args)
|
|
end
|
|
end
|