Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion api/internal/plugins/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@
package plugins

import (
"context"
"database/sql"
"fmt"

Expand Down
1 change: 0 additions & 1 deletion api/internal/plugins/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ package plugins

import (
"encoding/json"
"fmt"
"log"
"time"
)
Expand Down
4 changes: 4 additions & 0 deletions api/internal/plugins/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,10 @@ type LoadedPlugin struct {
// LoadedAt is the timestamp when the plugin was loaded into the runtime.
// Used for uptime monitoring and debugging load order issues.
LoadedAt time.Time

// IsBuiltin indicates whether the plugin is bundled with StreamSpace.
// Builtin plugins cannot be uninstalled and may have elevated permissions.
IsBuiltin bool
}

// PluginHandler is the interface that all plugins must implement.
Expand Down
Loading