Add minimal go project files

pull/984/head
Andreas Baulig 2021-08-13 10:54:37 +00:00
rodzic 963ce326f6
commit db69c1fb9e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 5225DCE5A4A2EE20
3 zmienionych plików z 32 dodań i 0 usunięć

17
.gitignore vendored
Wyświetl plik

@ -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/

Wyświetl plik

@ -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
)

Wyświetl plik

@ -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=