mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 23:55:13 -05:00
Add minimal go project files
This commit is contained in:
parent
963ce326f6
commit
db69c1fb9e
17
.gitignore
vendored
17
.gitignore
vendored
@ -25,3 +25,20 @@ obj-x86_64-linux-gnu/*
|
||||
**/venv*/
|
||||
*.pyc
|
||||
.DS_Store
|
||||
|
||||
### Go ###
|
||||
# Binaries for programs and plugins
|
||||
/rescuesdriq/*.exe
|
||||
/rescuesdriq/*.exe~
|
||||
/rescuesdriq/*.dll
|
||||
/rescuesdriq/*.so
|
||||
/rescuesdriq/*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
/rescuesdriq/*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
/rescuesdriq/*.out
|
||||
|
||||
/rescuesdriq/vendor/
|
||||
/rescuesdriq/Godeps/
|
||||
|
9
rescuesdriq/go.mod
Normal file
9
rescuesdriq/go.mod
Normal file
@ -0,0 +1,9 @@
|
||||
module github.com/f4exb/sdrangel/rescuesdriq
|
||||
|
||||
go 1.13
|
||||
|
||||
require (
|
||||
github.com/jtolds/gls v4.20.0+incompatible // indirect
|
||||
github.com/smartystreets/assertions v1.2.0 // indirect
|
||||
github.com/smartystreets/goconvey v1.6.2
|
||||
)
|
6
rescuesdriq/go.sum
Normal file
6
rescuesdriq/go.sum
Normal file
@ -0,0 +1,6 @@
|
||||
github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=
|
||||
github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
|
||||
github.com/smartystreets/assertions v1.2.0 h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs=
|
||||
github.com/smartystreets/assertions v1.2.0/go.mod h1:tcbTF8ujkAEcZ8TElKY+i30BzYlVhC/LOxJk7iOWnoo=
|
||||
github.com/smartystreets/goconvey v1.6.2 h1:R44Anr1ZQYKSh9jBN8v2++vtyDnZsoQifO6MZsJdCDU=
|
||||
github.com/smartystreets/goconvey v1.6.2/go.mod h1:XDJAKZRPZ1CvBcN2aX5YOUTYGHki24fSF0Iv48Ibg0s=
|
Loading…
Reference in New Issue
Block a user