5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 03:56:22 +00:00
panel/app/models/activity_pub/object/note.rb

11 lines
195 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# = Note =
#
# Representa notas, el tipo más común de objeto del Fediverso.
2024-02-21 15:46:38 +00:00
class ActivityPub
module Object
class Note < ActivityPub::Object; end
end
end