1 Star 0 Fork 3

lankii/protocol-plugin-pressure-transmitter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 940 Bytes
一键复制 编辑 原始数据 按行查看 历史
hezhuozhuo 提交于 2024-06-29 23:17 . feat:增加响应命令
package main
import (
httpclient "alarm_protocol/http_client"
httpservice "alarm_protocol/http_service"
"alarm_protocol/mqtt"
"alarm_protocol/mqtt/sub"
"alarm_protocol/services"
"log"
"strings"
"github.com/spf13/viper"
)
func main() {
conf()
LogInIt()
log.Println("Starting the application...")
// 启动mqtt客户端
mqtt.InitClient()
// 启动http客户端
httpclient.Init()
// 启动服务
go services.StartTCP()
// 启动http服务
httpservice.Init()
sub.SubscribeCommands()
select {}
}
func conf() {
log.Println("加载配置文件...")
// 设置环境变量前缀
viper.SetEnvPrefix("alarm_protocol")
// 使 Viper 能够读取环境变量
viper.AutomaticEnv()
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.SetConfigType("yaml")
viper.SetConfigFile("./config.yaml")
err := viper.ReadInConfig()
if err != nil {
log.Println(err.Error())
}
log.Println("加载配置文件完成...")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lankii/protocol-plugin-pressure-transmitter.git
git@gitee.com:lankii/protocol-plugin-pressure-transmitter.git
lankii
protocol-plugin-pressure-transmitter
protocol-plugin-pressure-transmitter
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385