The fantastic ORM library for Golang aims to be developer friendly.| GORM
Create RecordGenerics APIuser := User{Name: "Jinzhu", Age: 18, Birthday: time.Now()}// Create a single recordctx := context.Background()err := gorm.G[User](db).Create(ctx, &use| GORM