mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
10 lines
208 B
Go
10 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
|
|
}
|