class Phlex::Turbo::Stream

def initialize(action:, **attributes)

def initialize(action:, **attributes)
	@action = action
	@attributes = attributes
end

def template(&content)

def template(&content)
	turbo_stream(action: @action, **@attributes, &content)
end