Skip to content

Commit

Permalink
Merge pull request #85 from ggicci/feat/encoder
Browse files Browse the repository at this point in the history
Feat/encoder
  • Loading branch information
ggicci authored Dec 27, 2023
2 parents 5317ab1 + 5798248 commit 970dbdc
Show file tree
Hide file tree
Showing 91 changed files with 6,107 additions and 3,185 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@

# Project specified
.DS_Store
__debug*
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
default: test

SHELL=/usr/bin/env bash
GO=go
GOTEST=$(GO) test
GOCOVER=$(GO) tool cover
Expand All @@ -13,4 +14,10 @@ test/cover:

.PHONY: test/report
test/report:
$(GOCOVER) -html=main.cover.out
if [[ "$$HOSTNAME" =~ "codespaces-"* ]]; then \
mkdir -p /tmp/httpin_test; \
$(GOCOVER) -html=main.cover.out -o /tmp/httpin_test/coverage.html; \
sudo python -m http.server -d /tmp/httpin_test -b localhost 80; \
else \
$(GOCOVER) -html=main.cover.out; \
fi
105 changes: 0 additions & 105 deletions body.go

This file was deleted.

185 changes: 0 additions & 185 deletions body_test.go

This file was deleted.

Loading

0 comments on commit 970dbdc

Please sign in to comment.