for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package models
import (
"gorm.io/gorm"
)
// Mem structure
type UserLogs struct {
gorm.Model
UserID uint `json:"user_id" example:"1"`
User User
LogID uint `json:"log_id" example:"1"`
Log Logs
}