1
0
mirror of https://github.com/strongdm/comply synced 2024-11-17 05:14:55 +00:00
comply/internal/model/model.go

18 lines
310 B
Go
Raw Normal View History

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