Files
go-cart-actor/pkg/cart/tax_nordic.go
T
mats aa8b2bdedc
Build and Publish / BuildAndDeployAmd64 (push) Failing after 5s
Build and Publish / BuildAndDeployArm64 (push) Failing after 6s
all the refactor
2026-06-28 17:51:52 +02:00

14 lines
432 B
Go

package cart
import "git.k6n.net/mats/platform/tax"
// NordicTaxProvider implements TaxProvider for the Nordic countries.
// The canonical definition is now in platform/tax; this is a type alias
// for backward compatibility.
type NordicTaxProvider = tax.Nordic
// NewNordicTaxProvider returns a new NordicTaxProvider.
func NewNordicTaxProvider(defaultCountry string) *NordicTaxProvider {
return tax.NewNordic(defaultCountry)
}