-
Notifications
You must be signed in to change notification settings - Fork 34
/
pkg.go
55 lines (51 loc) · 860 Bytes
/
pkg.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package model
import "github.com/konveyor/tackle2-hub/settings"
var (
Settings = &settings.Settings
)
//
// JSON field (data) type.
type JSON = []byte
//
// All builds all models.
// Models are enumerated such that each are listed after
// all the other models on which they may depend.
func All() []interface{} {
return []interface{}{
Application{},
TechDependency{},
Incident{},
Analysis{},
Issue{},
Bucket{},
BusinessService{},
Dependency{},
File{},
Fact{},
Identity{},
Import{},
ImportSummary{},
ImportTag{},
JobFunction{},
MigrationWave{},
Proxy{},
Review{},
Setting{},
RuleSet{},
Rule{},
Stakeholder{},
StakeholderGroup{},
Tag{},
TagCategory{},
Target{},
Task{},
TaskGroup{},
TaskReport{},
Ticket{},
Tracker{},
ApplicationTag{},
Questionnaire{},
Assessment{},
Archetype{},
}
}