workflow/placeer.go
Alexander Kiryukhin c8749e6f6b Initial
2019-12-08 13:40:57 +03:00

8 lines
155 B
Go

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