mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 09:57:31 +00:00
11 lines
168 B
Ruby
11 lines
168 B
Ruby
|
# 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
|