17 lines
491 B
Go
17 lines
491 B
Go
package projects
|
|
|
|
type Project struct {
|
|
Path string `json:"path"`
|
|
DisplayName string `json:"displayName"`
|
|
TrustLevel string `json:"trustLevel"`
|
|
DirectoryExists bool `json:"directoryExists"`
|
|
Source SourceEvidence `json:"source"`
|
|
}
|
|
|
|
type SourceEvidence struct {
|
|
Kind string `json:"kind"`
|
|
Path string `json:"path,omitempty"`
|
|
Confidence string `json:"confidence"`
|
|
Message string `json:"message,omitempty"`
|
|
}
|