Skip to content

Commit

Permalink
Vendoring
Browse files Browse the repository at this point in the history
  • Loading branch information
jbuchbinder committed Nov 24, 2020
1 parent e608bc4 commit 8e91ffb
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
go.sum
3 changes: 3 additions & 0 deletions common/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/freemed/freemed-data/common

go 1.15
14 changes: 14 additions & 0 deletions hcpcs/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module github.com/freemed/freemed-data/hcpcs

go 1.15

replace (
github.com/freemed/freemed-data => ../../freemed-data
github.com/freemed/freemed-data/common => ../../freemed-data/common
)

require (
github.com/freemed/freemed-data/common v0.0.0-00010101000000-000000000000
github.com/jbuchbinder/gofixedfield v0.0.0-20201102175957-fbedb1ea9d63
github.com/jbuchbinder/gosimplehttp v0.0.0-20170815145554-20db4d78d11f
)
13 changes: 13 additions & 0 deletions ndc/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module github.com/freemed/freemed-data/ndc

go 1.15

replace (
github.com/freemed/freemed-data => ../../freemed-data
github.com/freemed/freemed-data/common => ../../freemed-data/common
)

require (
github.com/freemed/freemed-data/common v0.0.0-00010101000000-000000000000
github.com/jbuchbinder/gosimplehttp v0.0.0-20170815145554-20db4d78d11f
)

0 comments on commit 8e91ffb

Please sign in to comment.