Fake Mirrors
    Preparing search index...

    Interface DatabaseManager

    Defines the public contract for a database manager.

    The manager is responsible for administrative database operations such as loading custom functions and performing cleanup tasks.

    interface DatabaseManager {
        cleanup(): Promise<void>;
        loadFunctions(): Promise<void>;
    }

    Implemented by