operationsbus/entity_controller.go (7 lines of code) (raw):

package operationsbus import ( "context" ) type EntityController interface { GetEntity(context.Context, OperationRequest) (Entity, error) }