From acd3af70e15277b10e41a6a9c28e005a1692a699 Mon Sep 17 00:00:00 2001 From: a <a@a.a> Date: Tue, 20 Sep 2022 07:55:57 -0500 Subject: [PATCH] wip --- openrpc/parse/parsing.go | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/openrpc/parse/parsing.go b/openrpc/parse/parsing.go index ef18b53..1b26d9e 100644 --- a/openrpc/parse/parsing.go +++ b/openrpc/parse/parsing.go @@ -8,13 +8,18 @@ import ( "github.com/go-openapi/spec" ) +type GoGlobal struct { + Structs map[string]*GoStruct + Types map[string]*GoType + Methods map[string]*GoMethod +} + type GoStruct struct { Name string Description string Fields map[string]string } - type GoField struct { Name string Type *GoType @@ -30,12 +35,6 @@ type GoType struct { Description string } -type GoGlobal struct { - Structs map[string]*GoStruct - Types map[string]*GoType - Methods map[string]*GoMethod -} - type GoMethod struct { Input string Output string -- GitLab