introduce v9 actors and nv17

This commit is contained in:
Aayush
2022-09-09 21:40:15 -04:00
parent 29fff4fb06
commit 0efca4d266
262 changed files with 3930 additions and 1370 deletions
+2 -2
View File
@@ -94,7 +94,7 @@ func run() error {
package config
type DocField struct {
Name string
Num string
Type string
Comment string
}
@@ -109,7 +109,7 @@ var Doc = map[string][]DocField{
for _, f := range typ {
fmt.Println("\t\t{")
fmt.Printf("\t\t\tName: \"%s\",\n", f.Name)
fmt.Printf("\t\t\tNum: \"%s\",\n", f.Name)
fmt.Printf("\t\t\tType: \"%s\",\n\n", f.Type)
fmt.Printf("\t\t\tComment: `%s`,\n", f.Comment)
fmt.Println("\t\t},")