feat: add provider system

This commit is contained in:
2026-06-26 16:45:04 +02:00
parent 15467ba8f0
commit 79572a45dd
4 changed files with 51 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
local M
local GiteaProvider = {}
function M.init(config)
local provider = vim.deepcopy(GiteaProvider)
provider.config = config
return provider
end
return M