recreate main type
This commit is contained in:
@@ -6,7 +6,12 @@
|
||||
"entrypoint": "types",
|
||||
"path": "types",
|
||||
"authentication": [],
|
||||
"struct": [],
|
||||
"struct": [
|
||||
{
|
||||
"name": "Types",
|
||||
"fields": []
|
||||
}
|
||||
],
|
||||
"apis": [
|
||||
{
|
||||
"name": "list",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -1,7 +1,15 @@
|
||||
package crm
|
||||
|
||||
type ()
|
||||
type (
|
||||
// Types
|
||||
Types struct {
|
||||
changed []string
|
||||
}
|
||||
)
|
||||
|
||||
/* Constructors */
|
||||
func (Types) new() *Types {
|
||||
return &Types{}
|
||||
}
|
||||
|
||||
/* Getters/setters */
|
||||
|
||||
Reference in New Issue
Block a user