mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 22:16:22 +00:00
12 lines
216 B
Ruby
12 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
# = Person =
|
|
#
|
|
# Una persona, el perfil de une actore
|
|
class ActivityPub
|
|
class Object
|
|
class Person < ActivityPub::Object
|
|
include Concerns::ActorTypeConcern
|
|
end
|
|
end
|
|
end
|