diff --git a/.gitignore b/.gitignore index ed69a96..bad4b5e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ *.txt /Release/* /.idea/* -/bin/* \ No newline at end of file +/bin/* +/pkg/* \ No newline at end of file diff --git a/README.md b/README.md index adba186..a5a1a17 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ ## 综述 使用Golang编写的飞常准ADSB上传程序,适用于各个支持Golang编译的平台。 +如果此项目您你有帮助,请给我一个Star,谢谢。 +如果您有任何建议,欢迎提出一个issue。 ## 使用说明 本项目已更新,修改为Golang 1.11起支持的Go modules。 -去除了UUID生成器,请自定义UUID时确保不与其他人冲突。 +主分支去除了UUID生成器的代码,但依旧保留二进制版本,请自定义UUID时确保不与其他人冲突。 由于本项目不包括Dump1090,也不限制SBS服务是否运行在本机,因此你可能需要首先安装Dump1090,具体细节可自行搜索,当然你也可以在本项目提一个Issue,我将很乐意为你解答。 - - -你需要编辑Feeyo-adsb下的conf.ini文件 +你需要编辑conf.ini文件 ``` [config] diff --git a/src/go.mod b/src/go.mod new file mode 100644 index 0000000..b9067b0 --- /dev/null +++ b/src/go.mod @@ -0,0 +1,5 @@ +module dextercai.com/feeyo-adsb-golang + +go 1.13 + +require github.com/Unknwon/goconfig v0.0.0-20200908083735-df7de6a44db8 diff --git a/src/go.sum b/src/go.sum new file mode 100644 index 0000000..8993d47 --- /dev/null +++ b/src/go.sum @@ -0,0 +1,2 @@ +github.com/Unknwon/goconfig v0.0.0-20200908083735-df7de6a44db8 h1:1TrMV1HmBApBbM+Hy7RCKZD6UlYWYIPPfoeXomG7+zE= +github.com/Unknwon/goconfig v0.0.0-20200908083735-df7de6a44db8/go.mod h1:wngxua9XCNjvHjDiTiV26DaKDT+0c63QR6H5hjVUUxw=