github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/plugins/plugins.go (about) 1 // This file is part of the Smart Home 2 // Program complex distribution https://github.com/e154/smart-home 3 // Copyright (C) 2016-2023, Filippov Alex 4 // 5 // This library is free software: you can redistribute it and/or 6 // modify it under the terms of the GNU Lesser General Public 7 // License as published by the Free Software Foundation; either 8 // version 3 of the License, or (at your option) any later version. 9 // 10 // This library is distributed in the hope that it will be useful, 11 // but WITHOUT ANY WARRANTY; without even the implied warranty of 12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 // Library General Public License for more details. 14 // 15 // You should have received a copy of the GNU Lesser General Public 16 // License along with this library. If not, see 17 // <https://www.gnu.org/licenses/>. 18 19 package plugins 20 21 import ( 22 _ "github.com/e154/smart-home/plugins/alexa" 23 _ "github.com/e154/smart-home/plugins/autocert" 24 _ "github.com/e154/smart-home/plugins/cgminer" 25 _ "github.com/e154/smart-home/plugins/cpuspeed" 26 _ "github.com/e154/smart-home/plugins/email" 27 _ "github.com/e154/smart-home/plugins/hdd" 28 _ "github.com/e154/smart-home/plugins/html5_notify" 29 _ "github.com/e154/smart-home/plugins/logs" 30 _ "github.com/e154/smart-home/plugins/memory" 31 _ "github.com/e154/smart-home/plugins/memory_app" 32 _ "github.com/e154/smart-home/plugins/messagebird" 33 _ "github.com/e154/smart-home/plugins/modbus_rtu" 34 _ "github.com/e154/smart-home/plugins/modbus_tcp" 35 _ "github.com/e154/smart-home/plugins/moon" 36 _ "github.com/e154/smart-home/plugins/mqtt" 37 _ "github.com/e154/smart-home/plugins/mqtt_bridge" 38 _ "github.com/e154/smart-home/plugins/neural_network" 39 _ "github.com/e154/smart-home/plugins/node" 40 _ "github.com/e154/smart-home/plugins/notify" 41 _ "github.com/e154/smart-home/plugins/onvif" 42 _ "github.com/e154/smart-home/plugins/scene" 43 _ "github.com/e154/smart-home/plugins/sensor" 44 _ "github.com/e154/smart-home/plugins/slack" 45 _ "github.com/e154/smart-home/plugins/speedtest" 46 _ "github.com/e154/smart-home/plugins/sun" 47 _ "github.com/e154/smart-home/plugins/telegram" 48 _ "github.com/e154/smart-home/plugins/triggers" 49 _ "github.com/e154/smart-home/plugins/twilio" 50 _ "github.com/e154/smart-home/plugins/updater" 51 _ "github.com/e154/smart-home/plugins/uptime" 52 _ "github.com/e154/smart-home/plugins/version" 53 _ "github.com/e154/smart-home/plugins/weather_met" 54 _ "github.com/e154/smart-home/plugins/weather_owm" 55 _ "github.com/e154/smart-home/plugins/webdav" 56 _ "github.com/e154/smart-home/plugins/webpush" 57 _ "github.com/e154/smart-home/plugins/zigbee2mqtt" 58 )