Add types

This commit is contained in:
2024-11-05 23:22:38 +01:00
parent a0fb036da5
commit fd8395fec1
5 changed files with 31 additions and 23 deletions

13
types.go Normal file
View File

@@ -0,0 +1,13 @@
package main
type (
Function struct {
Arguments []Argument
Returns []Argument
}
Argument struct {
Name string
Type string
Description string
}
)