initial-commit

This commit is contained in:
Guillaume GRABÉ
2026-05-12 17:06:43 +02:00
commit 051a080dfa
110 changed files with 26377 additions and 0 deletions
@@ -0,0 +1,23 @@
syntax = "proto3";
package charybdis.plugins.dependencytrack;
// Dependency-Track plugin metadata
message DependencytrackMetadata {
string name = 1;
string description = 2;
// Resource type (project)
string resource_type = 3;
}
// Dependency-Track plugin spec
message DependencytrackSpec {
// Sync status information
string sync_status = 1;
string last_sync = 2;
string error_message = 3;
// Configuration stored as JSON
string config_json = 4;
}