Files
micro/flow/flow.go
2021-02-18 12:44:37 +03:00

8 lines
170 B
Go

// Package flow is an interface used for saga pattern messaging
package flow
type Step interface {
// Endpoint returns service_name.service_method
Endpoint() string
}