chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:32:21 +08:00
commit d158540472
2508 changed files with 477196 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
-- Copyright (C) Kong Inc.
local access = require "kong.plugins.basic-auth.access"
local kong_meta = require "kong.meta"
local BasicAuthHandler = {
VERSION = kong_meta.version,
PRIORITY = 1100,
}
function BasicAuthHandler:access(conf)
access.execute(conf)
end
return BasicAuthHandler