mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
10 lines
218 B
Go
10 lines
218 B
Go
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
|
|
}
|