mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-28 04:05:21 +08:00
18 lines
337 B
Go
18 lines
337 B
Go
package impl
|
|
|
|
import (
|
|
. "github.com/mickael-kerjean/filestash/server/plugin/plg_handler_mcp/types"
|
|
)
|
|
|
|
func AllResources() []Resource {
|
|
return []Resource{}
|
|
}
|
|
|
|
func AllResourceTemplates() []ResourceTemplate {
|
|
return []ResourceTemplate{}
|
|
}
|
|
|
|
func ExecResourceRead(params map[string]any) []ResourceContent {
|
|
return []ResourceContent{}
|
|
}
|