12 lines
163 B
Go
12 lines
163 B
Go
package handlers
|
|
|
|
import (
|
|
"github.com/metrue/fx/context"
|
|
)
|
|
|
|
// Call command handle
|
|
func Call(ctx context.Contexter) error {
|
|
// TODO not supported
|
|
return nil
|
|
}
|