blob: 37c74fcb2c025c19d123b699bcd0c93ff01bff8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
local InstallContext = require "mason-core.installer.context"
local M = {}
---@return InstallContext
function M.context()
return coroutine.yield(InstallContext.CONTEXT_REQUEST)
end
return M
|