mirror of
https://github.com/Monibuca/plugin-ps.git
synced 2025-12-24 12:37:59 +08:00
15 lines
192 B
Go
15 lines
192 B
Go
package pluginps
|
|
|
|
import (
|
|
. "m7s.live/engine/v4"
|
|
)
|
|
|
|
type PSConfig struct {
|
|
Publisher
|
|
}
|
|
var conf = &PSConfig{}
|
|
var PSPlugin = InstallPlugin(conf)
|
|
|
|
func (c *PSConfig) OnEvent(event any) {
|
|
|
|
} |