mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 09:28:14 +00:00
12 lines
208 B
Go
12 lines
208 B
Go
//go:build !windows
|
|
|
|
package plugin
|
|
|
|
import (
|
|
sdk "gitcode.com/JianFeeeee/HomeAgent/internal/sdk"
|
|
)
|
|
|
|
func tryLoadDLL(dir, name string, config map[string]interface{}) (sdk.Plugin, error) {
|
|
return nil, nil
|
|
}
|