Public Access
initial-commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user