added hooks and plugins files missing

This commit is contained in:
2025-05-27 04:54:41 -05:00
parent 381f78b4e2
commit d920660366
16 changed files with 145 additions and 1 deletions

6
plugins/auth/__init__.py Normal file
View File

@ -0,0 +1,6 @@
import click
from flask import Flask
def register_cli(app: Flask):
# No CLI commands yet for auth plugin
pass

6
plugins/auth/plugin.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "auth",
"version": "1.0.0",
"description": "User authentication and authorization plugin",
"entry_point": null
}