mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
9 lines
184 B
Go
9 lines
184 B
Go
package client
|
|
|
|
import "github.com/foomo/contentserver/server"
|
|
|
|
type transport interface {
|
|
call(handler server.Handler, request interface{}, response interface{}) error
|
|
shutdown()
|
|
}
|