fix(smarts3): Use filesystem store for bucket creation and remove smartbucket runtime dependency

This commit is contained in:
2025-11-23 22:31:44 +00:00
parent b62cb0bc97
commit 95d78d0d08
7 changed files with 178 additions and 27 deletions

View File

@@ -24,7 +24,7 @@ export class Smarts3Server {
private httpServer?: plugins.http.Server;
private router: S3Router;
private middlewares: MiddlewareStack;
private store: FilesystemStore;
public store: FilesystemStore; // Made public for direct access from Smarts3 class
private options: Required<ISmarts3ServerOptions>;
constructor(options: ISmarts3ServerOptions = {}) {