mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 07:32:35 +00:00
10 lines
174 B
Ruby
10 lines
174 B
Ruby
class Peer
|
|
attr_reader :id, :hostname, :port, :data
|
|
def initialize(id:, hostname:, port:)
|
|
@id = id
|
|
@hostname = hostname
|
|
@port = port
|
|
|
|
@data = {}
|
|
end
|
|
end |