github.com/aporeto-inc/trireme-lib@v10.358.0+incompatible/monitor/remoteapi/client/interfaces.go (about)

     1  package client
     2  
     3  import (
     4  	"go.aporeto.io/enforcerd/trireme-lib/common"
     5  )
     6  
     7  // APIClient is the interface of the API client
     8  type APIClient interface {
     9  	// SendRequest will send a request to the server.
    10  	SendRequest(event *common.EventInfo) error
    11  }