Skip to content

Commit 865df51

Browse files
committed
fix: remove replace in go.mod
1 parent ca82862 commit 865df51

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

cmd/rest/main.go

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var (
2828
Help: "Minimize logging",
2929
Default: false,
3030
},
31+
3132
/*** server ***/
3233
"addr": {
3334
Short: "a",
@@ -68,10 +69,12 @@ var (
6869
// cli
6970
NoColor bool `arg:"no-color"`
7071
Quiet bool `arg:"quiet"`
72+
7173
// server
7274
Addr string `arg:"addr"`
7375
Serve bool `arg:"serve"`
7476
Dir string `arg:"dir"`
77+
7578
// client
7679
File string `arg:"file"`
7780
Block int `arg:"block"`

go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ module github.com/taybart/rest
22

33
go 1.17
44

5-
replace github.com/taybart/args => ../../taybart/args
6-
75
require (
86
github.com/hashicorp/hcl/v2 v2.11.1
9-
github.com/taybart/args v0.0.0-20220224221651-d96033464fcd
7+
github.com/taybart/args v0.0.1
108
github.com/taybart/log v1.5.1
119
github.com/zclconf/go-cty v1.8.0
1210
)

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ github.com/sergi/go-diff v1.0.0 h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ=
3232
github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
3333
github.com/spf13/pflag v1.0.2/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
3434
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
35+
github.com/taybart/args v0.0.1 h1:KHfgv/Vu9TY9NC4PydD74CAvMG9MX5xqMJI79sJqKMw=
36+
github.com/taybart/args v0.0.1/go.mod h1:aZ8Gg0AdpDyO3BjBfPEiwkIHu/gV/k1Iz4FDJtytGIw=
3537
github.com/taybart/log v1.5.1 h1:gRqWZW9IJ5dW8qVWBfDPM5+EbWAJ+iDG4u52wfHsiwc=
3638
github.com/taybart/log v1.5.1/go.mod h1:zG3tAVOXRh0zQfyxs0dTqarj1hTKFOUWk/oKeiugmZA=
3739
github.com/vmihailenco/msgpack v3.3.3+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk=

0 commit comments

Comments
 (0)