37 lines
749 B
Go
37 lines
749 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/gotify/plugin-api"
|
|
)
|
|
|
|
// GetGotifyPluginInfo returns gotify plugin info
|
|
func GetGotifyPluginInfo() plugin.Info {
|
|
return plugin.Info{
|
|
ModulePath: "github.com/gotify/server/v2/plugin/testing/broken/noinstance",
|
|
}
|
|
}
|
|
|
|
// Plugin is plugin instance
|
|
type Plugin struct{}
|
|
|
|
// Enable implements plugin.Plugin
|
|
func (c *Plugin) Enable() error {
|
|
return errors.New("cannot instantiate")
|
|
}
|
|
|
|
// Disable implements plugin.Plugin
|
|
func (c *Plugin) Disable() error {
|
|
return nil
|
|
}
|
|
|
|
// NewGotifyPluginInstance creates a plugin instance for a user context.
|
|
func NewGotifyPluginInstance(ctx plugin.UserContext) plugin.Plugin {
|
|
return &Plugin{}
|
|
}
|
|
|
|
func main() {
|
|
panic("this is a broken plugin for testing purposes")
|
|
}
|