mirror of
https://gitcode.com/JianFeeeee/homeagent-sdk.git
synced 2026-09-20 17:08:01 +00:00
12 lines
225 B
Go
12 lines
225 B
Go
//go:build !windows || !cgo
|
|
|
|
package main
|
|
|
|
import (
|
|
sdk "gitcode.com/JianFeeeee/homeagent-sdk/sdk"
|
|
)
|
|
|
|
func NewPlugin(name string, config map[string]interface{}) (sdk.Plugin, error) {
|
|
return NewPluginFactory(name, config)
|
|
}
|