mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
11 lines
208 B
Go
11 lines
208 B
Go
|
//go:build !cgo || !(linux || darwin || freebsd)
|
||
|
|
||
|
package main
|
||
|
|
||
|
import log "github.com/sirupsen/logrus"
|
||
|
|
||
|
func loadPlugins(string) error {
|
||
|
log.Warn("Plugin support is disabled in this version")
|
||
|
return nil
|
||
|
}
|