workflow/placeer.go

8 lines
155 B
Go
Raw Normal View History

2019-12-08 13:40:57 +03:00
package workflow
// Placeer interface for objects that has place and can change place
type Placeer interface {
GetPlace() Place
SetPlace(Place) error
}