lib/ree_lib/packages/ree_dao/package/ree_dao/functions/init_cache.rb



# frozen_string_literal: true

class ReeDao::InitCache
  include Ree::FnDSL

  fn :init_cache do
    link :dao_cache
  end

  contract(None => nil)
  def call
    dao_cache.add_thread_group_cache(Thread.current.group)
    nil
  end
end