12 lines
165 B
Go
12 lines
165 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"gitlab.com/wpetit/goweb/plugin"
|
||
|
)
|
||
|
|
||
|
func RegisterPlugin(ctx context.Context) (plugin.Plugin, error) {
|
||
|
return &MyPlugin{}, nil
|
||
|
}
|