forked from Hardw01f/Vulnerability-goapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Hardw01f#45 from Hardw01f/refactor/InstGomod
chore: 🤖 introduce go.mod for import local package
- Loading branch information
Showing
9 changed files
with
151 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module github.com/hardw01f/Vulnerability-goapp | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/go-sql-driver/mysql v1.5.0 | ||
github.com/hardw01f/vulnerability-goapp v0.0.0-20200608095627-9a1291f40edf // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 | ||
) | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/admin => ./pkg/admin | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/cookei => ./pkg/cookie | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/user => ./pkg/user | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/image => ./pkg/image | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/login => ./pkg/login | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/logout => ./pkg/logout | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/post => ./pkg/post | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/register => ./pkg/register | ||
|
||
replace github.com/hardw01f/Vulnerability-goapp/pkg/search => ./pkg/search |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs= | ||
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= | ||
github.com/hardw01f/vulnerability-goapp v0.0.0-20200608095627-9a1291f40edf h1:4jlqfqANv8ThioC+h0Fxz75tm+zl3Alaav7GQ/Er2eQ= | ||
github.com/hardw01f/vulnerability-goapp v0.0.0-20200608095627-9a1291f40edf/go.mod h1:j334qfhZGFHs1bymGREtSfXoiOXwK/wt9i5PYVbDTTI= | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.