blob: 5b5b9356a93a64a6388afcfd055dce517d35a642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package dcerpc
import (
"context"
"github.com/bryanmcnulty/adauth"
)
type Client interface {
Connect(ctx context.Context, creds *adauth.Credential, target *adauth.Target) error
Close(ctx context.Context) error
}
|