mirror of
https://github.com/github/codeql.git
synced 2026-02-13 13:41:08 +01:00
9 lines
114 B
Ruby
9 lines
114 B
Ruby
class View3 < ViewComponent::Base
|
|
def initialize(x)
|
|
@x = x
|
|
end
|
|
|
|
def get
|
|
@x
|
|
end
|
|
end |