Skip to content

Commit 89eb0bd

Browse files
authored
feat: Refactor definitions with pure golang struct (#984)
* Refactor generate features Signed-off-by: Xuanwo <[email protected]> * Don't neet data Signed-off-by: Xuanwo <[email protected]> * refactor gen info Signed-off-by: Xuanwo <[email protected]> * Refactor object Signed-off-by: Xuanwo <[email protected]> * Refactor pairs Signed-off-by: Xuanwo <[email protected]> * Refactor gen_op Signed-off-by: Xuanwo <[email protected]> * Add buildable draft Signed-off-by: Xuanwo <[email protected]> * Add namespace Signed-off-by: Xuanwo <[email protected]> * Implement pairs Signed-off-by: Xuanwo <[email protected]> * Populate into factory Signed-off-by: Xuanwo <[email protected]> * Remove generate for iowrap Signed-off-by: Xuanwo <[email protected]> * Make golangci-lint happy Signed-off-by: Xuanwo <[email protected]> * Make golangcilint happy Signed-off-by: Xuanwo <[email protected]>
1 parent fb2f311 commit 89eb0bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+4029
-5576
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ vet:
1919
go vet ./...
2020

2121
generate:
22-
go generate -tags tools ./...
22+
go generate ./...
2323
gofmt -w -l .
2424

2525
build: tidy generate format check
26-
go build -tags tools ./...
26+
go build ./...
2727

2828
build-all:
2929
for f in $$(find . -name go.mod); \

cmd/definitions/gen_feature.go

-54
This file was deleted.

cmd/definitions/gen_func.go

-67
This file was deleted.

cmd/definitions/gen_op.go

-120
This file was deleted.

0 commit comments

Comments
 (0)