activitypub-academy/app/lib/activity_log_event.rb

11 lines
169 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ActivityLogEvent
2022-12-09 02:27:05 +09:00
def initialize
@timestamp = Time.now.utc.iso8601
end
attr_accessor :type, :path, :data, :timestamp
end