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