github.com/goravel/framework@v1.13.9/contracts/database/factory/factory.go (about) 1 package factory 2 3 type Factory interface { 4 // Definition defines the model's default state. 5 Definition() map[string]any 6 } 7 8 type Model interface { 9 // Factory creates a new factory instance for the model. 10 Factory() Factory 11 }