Initial commit

This commit is contained in:
2024-09-12 00:24:29 +02:00
commit 2e10e11ab9
4 changed files with 131 additions and 0 deletions

29
types.go Normal file
View File

@@ -0,0 +1,29 @@
package main
type (
Class struct {
ClassName string
Fields []Field
Methods []Method
}
Field struct {
Name string
Type string
Comment string
}
Method struct {
Name string
Params []Param
Returns []Return
Comment string
}
Param struct {
Name string
Type string
Comment string
}
Return struct {
Type string
Comment string
}
)