mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
10 lines
167 B
Ruby
10 lines
167 B
Ruby
|
|
module Api
|
||
|
|
class BasePolicy
|
||
|
|
attr_reader :api_key, :record
|
||
|
|
|
||
|
|
def initialize(api_key, record)
|
||
|
|
@api_key = api_key
|
||
|
|
@record = record
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|