diff options
| author | Leonardo Bishop <me@leonardobishop.net> | 2026-02-13 17:07:34 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.net> | 2026-02-13 17:08:01 +0000 |
| commit | bbe07c2788b00711e011f7805e14fa0933bf2d73 (patch) | |
| tree | 7a80a05fd793fe572b901e442576ccbf5f3accc2 /__init__.py | |
Diffstat (limited to '__init__.py')
| -rw-r--r-- | __init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..5e649cb --- /dev/null +++ b/__init__.py @@ -0,0 +1,6 @@ +from CTFd.plugins import register_plugin_assets_directory +from .presenter import presenter_blueprint + +def load(app): + register_plugin_assets_directory(app, base_path='/plugins/ctfd-presenter/assets/') + app.register_blueprint(presenter_blueprint) |
