2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-22 09:57:31 +00:00
moebooru/lib/local_data.rb

11 lines
168 B
Ruby
Raw Normal View History

2020-12-10 23:10:28 +09:00
# This simulates an http.request_get response, for data: URLs.
class LocalData
def initialize(data)
@data = data
end
def read_body
yield @data
end
end