Files
sendico/api/payments/quotation/internal/shared/account.go
2026-02-18 01:35:28 +01:00

12 lines
224 B
Go

package shared
import "github.com/tech/sendico/pkg/model/account_role"
func CloneAccountRole(role *account_role.AccountRole) *account_role.AccountRole {
if role == nil {
return nil
}
cloned := *role
return &cloned
}