3
0

recreate main type

This commit is contained in:
Tit Petric
2018-07-05 14:03:18 +00:00
parent e59eedb0b7
commit 0f21aea39c
3 changed files with 21 additions and 3 deletions
+6 -1
View File
@@ -6,7 +6,12 @@
"entrypoint": "types",
"path": "types",
"authentication": [],
"struct": [],
"struct": [
{
"name": "Types",
"fields": []
}
],
"apis": [
{
"name": "list",
+6 -1
View File
@@ -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",
+9 -1
View File
@@ -1,7 +1,15 @@
package crm
type ()
type (
// Types
Types struct {
changed []string
}
)
/* Constructors */
func (Types) new() *Types {
return &Types{}
}
/* Getters/setters */