sftp/unimplemented_test.go

14 lines
156 B
Go
Raw Normal View History

2024-10-01 01:38:18 +08:00
package sftp
import (
"testing"
)
func TestUnimplemented(t *testing.T) {
type S struct {
UnimplementedServerHandler
2024-10-01 01:38:18 +08:00
}
var _ ServerHandler = &S{}
}