aboutsummaryrefslogtreecommitdiff
path: root/placeer.go
blob: 1d6eddfbd5d2068fc8f88218353829ba10584088 (plain) (blame)
1
2
3
4
5
6
7
package workflow

// Placeer interface for objects that has place and can change place
type Placeer interface {
	GetPlace() Place
	SetPlace(Place) error
}