diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b444581 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "gomod" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..9c1729c --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/jauderho/rtltcp + +go 1.18 + +require github.com/bemasher/rtltcp v0.0.0-20230430192739-989d5f8e402f diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..21d54ae --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/bemasher/rtltcp v0.0.0-20230430192739-989d5f8e402f h1:0sLM6Z4Kxme534Of1VFmKYb1kKXUuKyX/qWWYNNJBa4= +github.com/bemasher/rtltcp v0.0.0-20230430192739-989d5f8e402f/go.mod h1:O6JJfPo2Vr2FA+N401mWyEVhwq5Wo/z1dfX+tIKGRUU=