Skip to content

Commit afba502

Browse files
authored
Merge pull request #12 from Baker/google-refactor
fix: google golang design.
2 parents 95d70e2 + e336833 commit afba502

52 files changed

Lines changed: 9358 additions & 3254 deletions

Some content is hidden

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

.cursor/rules/go.mdc

Lines changed: 556 additions & 0 deletions
Large diffs are not rendered by default.

.github/.testcoverage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
# Minimal setup to match CI job
33
profile: '' # set via github action
44
threshold:
5-
file: 75
5+
file: 60
66
total: 75
7+
exclude:
8+
paths:
9+
- cmd/inboundparse/main.go

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN go mod download
1313
COPY . .
1414

1515
# Build the binary
16-
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o inboundparse .
16+
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o inboundparse ./cmd/inboundparse
1717

1818
# Final stage
1919
FROM alpine:latest

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ help:
1111

1212
build: ## Build the binary
1313
@echo "Building $(BINARY_NAME)..."
14-
go build -o $(BINARY_NAME)
14+
go build -o $(BINARY_NAME) ./cmd/inboundparse
1515

1616
deps: ## Download dependencies
1717
@echo "Downloading dependencies..."

0 commit comments

Comments
 (0)