9 lines
154 B
Ruby
9 lines
154 B
Ruby
module Adamantium
|
|
class Context < Hanami::View::Context
|
|
def initialize(**options)
|
|
@options = options
|
|
super(**options)
|
|
end
|
|
end
|
|
end
|