mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-07-13 21:02:44 +08:00
10 lines
176 B
Go
10 lines
176 B
Go
package server
|
|
|
|
import "fmt"
|
|
|
|
func StartMcpServer(transport string) error {
|
|
fmt.Println("Starting MCP server...")
|
|
fmt.Println("Transport protocol:", transport)
|
|
return nil
|
|
}
|