Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ported to go 1.14 to allow quick installation with go get #16

Merged
merged 4 commits into from Jun 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -22,4 +22,6 @@ _testmain.go
*.exe

# Linux binary
harx
/harx

.idea
10 changes: 10 additions & 0 deletions README.md
Expand Up @@ -6,6 +6,16 @@ tools for HAR file
harx : extract files from HAR file. Domain name and all fold info are kept.


installation
------------

harx can be installed using (you need go 1.14)

go get -v github.com/outersky/har-tools/cmd/harx

this will install an executable in your default path for go executables $GOPATH/bin (default GOPATH=$HOME/go)


harx
--------

Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions go.mod
@@ -0,0 +1,3 @@
module github.com/outersky/har-tools

go 1.14