mirror of
https://github.com/strongdm/comply
synced 2024-11-05 23:45:25 +00:00
18 lines
303 B
Go
18 lines
303 B
Go
package model
|
|
|
|
type Data struct {
|
|
Standards []*Standard
|
|
Narratives []*Narrative
|
|
Policies []*Policy
|
|
Procedures []*Procedure
|
|
Tickets []*Ticket
|
|
Audits []*Audit
|
|
}
|
|
|
|
type Revision struct {
|
|
Date string `yaml:"date"`
|
|
Comment string `yaml:"comment"`
|
|
}
|
|
|
|
type Satisfaction map[string][]string
|