cln-offers/pkg/plugin/info.go

14 lines
312 B
Go

package plugin
import (
"github.com/vincenzopalazzo/cln4go/plugin"
)
// / GetInfo - Return the info of the ocean plugin
func GetInfo(cln *plugin.Plugin[*State], _ map[string]any) (map[string]any, error) {
cln.Log("debug", "calling getinfo for plugin")
return map[string]any{
"version": "0.0.1",
}, nil
}