14 lines
432 B
Go
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)
|
|
}
|