12 lines
205 B
Go
12 lines
205 B
Go
package invitation_repo
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type InvitationRepository struct {
|
|
db *gorm.DB
|
|
}
|
|
|
|
func NewInvitationRepository(db *gorm.DB) *InvitationRepository {
|
|
return &InvitationRepository{db: db}
|
|
}
|