Class: Sidekiq::Mcp::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/sidekiq/mcp.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



34
35
36
37
38
39
# File 'lib/sidekiq/mcp.rb', line 34

def initialize
  @enabled = true
  @path = "/sidekiq-mcp"
  @auth_token = nil
  @sse_enabled = true
end

Instance Attribute Details

#auth_tokenObject

Returns the value of attribute auth_token.



32
33
34
# File 'lib/sidekiq/mcp.rb', line 32

def auth_token
  @auth_token
end

#enabledObject

Returns the value of attribute enabled.



32
33
34
# File 'lib/sidekiq/mcp.rb', line 32

def enabled
  @enabled
end

#pathObject

Returns the value of attribute path.



32
33
34
# File 'lib/sidekiq/mcp.rb', line 32

def path
  @path
end

#sse_enabledObject

Returns the value of attribute sse_enabled.



32
33
34
# File 'lib/sidekiq/mcp.rb', line 32

def sse_enabled
  @sse_enabled
end