Skip to content

Commit c8131e6

Browse files
committedAug 21, 2020
added version
1 parent 30b6557 commit c8131e6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed
 

‎go.mod

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module github.com/pacedotdev/oto
22

33
go 1.13
44

5+
replace github.com/pacedotdev/oto/parser => ./parser
6+
57
require (
68
github.com/dustin/go-humanize v1.0.0
79
github.com/fatih/structtag v1.2.0
@@ -15,8 +17,9 @@ require (
1517
github.com/markbates/inflect v1.0.4
1618
github.com/matryer/is v1.4.0
1719
github.com/microcosm-cc/bluemonday v1.0.3 // indirect
20+
github.com/pacedotdev/oto/parser v0.0.0-00010101000000-000000000000
1821
github.com/pkg/errors v0.9.1
1922
github.com/rogpeppe/go-internal v1.6.0 // indirect
2023
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
21-
golang.org/x/tools v0.0.0-20200714190737-9048b464a08d
24+
golang.org/x/tools v0.0.0-20200820180210-c8f393745106
2225
)

‎go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
9999
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
100100
golang.org/x/tools v0.0.0-20200714190737-9048b464a08d h1:hYhnolbefSSt3WZp66sgmgnEOFv5PD6a5PIcnKJ8jdU=
101101
golang.org/x/tools v0.0.0-20200714190737-9048b464a08d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
102+
golang.org/x/tools v0.0.0-20200820180210-c8f393745106 h1:42Zs/g7pjhSIE/wiAuKcp8zp20zv7W2diNU6arpshOA=
103+
golang.org/x/tools v0.0.0-20200820180210-c8f393745106/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
102104
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
103105
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
104106
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=

‎main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ flags:`)
6060
}
6161
p.Verbose = *v
6262
if p.Verbose {
63-
fmt.Println("oto - github.com/pacedotdev/oto")
63+
fmt.Println("oto - github.com/pacedotdev/oto", Version)
6464
}
6565
def, err := p.Parse()
6666
if err != nil {

0 commit comments

Comments
 (0)
Please sign in to comment.