Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / models / validator.go
117 B 6 lines
1package models 2 3type Validator interface { 4 // Validate checks the object and returns any error. 5 Validate() error 6}