mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 22:18:06 +01:00
10 lines
176 B
Ruby
10 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ResponseWithLimit
|
|
def initialize(response, limit)
|
|
@response = response
|
|
@limit = limit
|
|
end
|
|
|
|
attr_reader :response, :limit
|
|
end
|