diff options
Diffstat (limited to 'pkg/binstruct/structs.go')
-rw-r--r-- | pkg/binstruct/structs.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/binstruct/structs.go b/pkg/binstruct/structs.go new file mode 100644 index 0000000..6f971d5 --- /dev/null +++ b/pkg/binstruct/structs.go @@ -0,0 +1,11 @@ +package binstruct + +import ( + "reflect" +) + +type structHandler struct { +} + +func getStructHandler(typ reflect.Type) structHandler { +} |