I’m working on a custom auth plugin (auth_check
) in Go and I’m wondering if there is any way to access base middleware functions (e.g. to read existing keys, apply policies, etc.) or if those have to be reimplemented in custom plugins? (So far, any way I’ve tried to get access to that info has yielded compile or plugin load issues and I’m trying to figure out if I’m just barking up the wrong tree/this is intentionally disallowed.)
I found this post, but that’s from 8 years ago and seems to be about JS.