-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Nvme tcp initial commit * Nvme tcp - added get session * NVMe connect * Fixed errors on nvme tcp * Waitgroup error fix * Added readDevicesFromResultCH * Added readNVMeDevicesFromResultCH * Added readNVMeDevicesFromResultCH * Added readNVMeDevicesFromResultCH * Added readNVMeDevicesFromResultCH * NVMe connect changes * NVMe disconnect changes * Review changes * Resolving conflicts * Review changes * Review changes * Lint errors fix * Lint errors fix * Lint errors fix * updated go.mod * updated gitignore * fixed lint error * updated go.sum Co-authored-by: Harshita Pandey <[email protected]> Co-authored-by: Harshita Pandey <[email protected]> Co-authored-by: Harish P <[email protected]>
- Loading branch information
1 parent
ea0ebde
commit 209fb19
Showing
8 changed files
with
675 additions
and
8 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 |
---|---|---|
@@ -1 +1,3 @@ | ||
c.out | ||
c.out | ||
.idea | ||
.vscode |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
module github.com/dell/gobrick | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dell/goiscsi v1.1.0 | ||
github.com/dell/gonvme v0.0.0-20220217061253-306d51e093bd | ||
github.com/golang/mock v1.3.1 | ||
github.com/stretchr/testify v1.4.0 | ||
golang.org/x/sync v0.0.0-20190423024810-112230192c58 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.2 // indirect | ||
) |
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.