1
0
mirror of https://github.com/strongdm/comply synced 2024-07-07 17:01:47 +00:00
comply/internal/model/model.go

18 lines
304 B
Go
Raw Normal View History

2018-05-15 21:13:11 +00:00
package model
type Data struct {
Standards []*Standard
Narratives []*Document
Policies []*Document
2018-05-15 21:13:11 +00:00
Procedures []*Procedure
Tickets []*Ticket
Audits []*Audit
}
type Revision struct {
Date string `yaml:"date"`
Comment string `yaml:"comment"`
}
type Satisfaction map[string][]string