https://github.com/barcawebcloud/bscan-go
A Go library for scan any computational device and atmospheric environment.
https://github.com/barcawebcloud/bscan-go
barca barca-cloud bscan bscan-go bwc go-library golang hardware scanner software-engineering
Last synced: 3 months ago
JSON representation
A Go library for scan any computational device and atmospheric environment.
- Host: GitHub
- URL: https://github.com/barcawebcloud/bscan-go
- Owner: BarcaWebCloud
- License: mit
- Created: 2023-04-19T03:36:36.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-19T14:53:26.000Z (about 2 years ago)
- Last Synced: 2025-01-31T08:34:14.117Z (4 months ago)
- Topics: barca, barca-cloud, bscan, bscan-go, bwc, go-library, golang, hardware, scanner, software-engineering
- Language: Go
- Homepage: https://pkg.go.dev/github.com/BarcaWebCloud/bscan-go
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## bscan-go 0.1.0
### Get the bscan-go module
Note that you need to include the **v** in the version tag.
```sh
go get github.com/BarcaWebCloud/[email protected]
```
A Go library for scan any computational device and atmospheric environment.
Requeriments:
* [GO lang](https://go.dev/doc/install)
## Tests
We will start a series of tests of our `golang package`.
By default Go comes with rudimentary test capabilities that looks for files ending with **_test.go**.
Run the tests using the following command:
```
go test
```
If everything passed, tidy up a bit by running:
```
go mod tidy
```Then run the tests again, just to be sure:
```
go test
```For more verbose output try this:
```
go test -v
```Sometimes test results are cached. To make sure they are not, use this command:
```
go test -count 1
go test -v -count 1
```For more information on testing, run this command:
```
go help testflag
```