mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:06:22 +00:00
7 lines
114 B
Ruby
7 lines
114 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MetadataDate < MetadataTemplate
|
|
def default_value
|
|
Date.today
|
|
end
|
|
end
|