class CMDx::LazyStruct

def method_missing(method_name, *args, **_kwargs, &)

def method_missing(method_name, *args, **_kwargs, &)
  @table.fetch(method_name.to_sym) do
    store!(method_name[0..-2], args.first) if method_name.end_with?("=")
  end
end