diff --git a/pkg/decode/format.go b/pkg/decode/format.go index 4be04820..1e4c4b63 100644 --- a/pkg/decode/format.go +++ b/pkg/decode/format.go @@ -17,32 +17,10 @@ type Format struct { RootArray bool RootName string Dependencies []Dependency - Help FormatHelp Functions []string SkipDecodeFunction bool } -type HelpExample struct { - Comment string - Code string -} - -type HelpFunction struct { - Name string - Examples []HelpExample -} - -type HelpReference struct { - Title string - URL string -} - -type FormatHelp struct { - Notes string - Functions []HelpFunction - References []HelpReference -} - func FormatFn(d func(d *D) any) Group { return Group{{ DecodeFn: d,