summaryrefslogtreecommitdiff
path: root/app/domain/entity.go
blob: 0377c51b5eb6560ce02eaa7563c82e17ee8f13b4 (plain)
1
2
3
4
5
6
package domain

type Entity interface {
	Identifiable
	Validate() error
}