fix(plugin-auth): export BasicAuth

This commit is contained in:
chenos 2024-02-20 16:07:51 +08:00
parent 11b93ddfa9
commit 985a06a675
2 changed files with 4 additions and 2 deletions

View File

@ -1 +1 @@
export { default, AuthModel } from './server';
export { AuthModel, BasicAuth, default } from './server';

View File

@ -1,2 +1,4 @@
export { default } from './plugin';
export { BasicAuth } from './basic-auth';
export { AuthModel } from './model/authenticator';
export { default } from './plugin';