tem_require_rq_store Subroutine

public subroutine tem_require_rq_store(L)

Load the rq_store script into the Lua state.

After calling this routine, following requires will not look up Lua scripts from the file system but instead try to fetch them from the rq_store.

Arguments

Type IntentOptional Attributes Name
type(flu_State) :: L

Source Code

  subroutine tem_require_rq_store(L)
    ! ---------------------------------------------------------------------------
    type(flu_State) :: L
    ! ---------------------------------------------------------------------------

    call open_config_chunk(L, trim(rq_store_Lua))

  end subroutine tem_require_rq_store