package testutil import "gorm.io/gorm" // TestEntity is a simple struct used for testing the generic BaseRepository. // It is not used in the main application. type TestEntity struct { gorm.Model Name string }