13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
|
|
/**
|
||
|
|
* Address Domain - Providers
|
||
|
|
*
|
||
|
|
* Provider-specific adapters for BFF only.
|
||
|
|
* Portal should never import from this path.
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Re-export everything from Japan Post provider
|
||
|
|
export * from "./japanpost/index.js";
|
||
|
|
|
||
|
|
// Also export as namespace for convenience
|
||
|
|
export * as JapanPost from "./japanpost/index.js";
|