diff --git a/crm/docs/src/spec.json b/crm/docs/src/spec.json index d8a1500ad..ca9851988 100644 --- a/crm/docs/src/spec.json +++ b/crm/docs/src/spec.json @@ -6,7 +6,12 @@ "entrypoint": "types", "path": "types", "authentication": [], - "struct": [], + "struct": [ + { + "name": "Types", + "fields": [] + } + ], "apis": [ { "name": "list", diff --git a/crm/docs/src/spec/types.json b/crm/docs/src/spec/types.json index 5392247e9..b165560be 100644 --- a/crm/docs/src/spec/types.json +++ b/crm/docs/src/spec/types.json @@ -3,7 +3,12 @@ "Description": "Types are building blocks for module forms", "Package": "crm", "Interface": "Types", - "Struct": [], + "Struct": [ + { + "fields": [], + "name": "Types" + } + ], "Protocol": "", "Authentication": [], "Path": "/types", diff --git a/crm/types.structs.go b/crm/types.structs.go index 0df2abf20..92951c266 100644 --- a/crm/types.structs.go +++ b/crm/types.structs.go @@ -1,7 +1,15 @@ package crm -type () +type ( + // Types + Types struct { + changed []string + } +) /* Constructors */ +func (Types) new() *Types { + return &Types{} +} /* Getters/setters */