blob: 8af05207067c6227d9ae766d84bc43ac4f0d2175 (
plain)
1
2
3
4
5
6
7
8
9
|
package ipp
import "io"
type Adapter interface {
SendRequest(url string, req *Request, additionalResponseData io.Writer) (*Response, error)
GetHttpUri(namespace string, object any) string
TestConnection() error
}
|