File tree Expand file tree Collapse file tree
scripts/utilities/supplier-data/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { hideBin } from "yargs/helpers" ;
22import yargs from "yargs" ;
3- import { LetterStatusType } from "@internal/datastore/src/types" ;
4- import { randomUUID } from "node:crypto" ;
5- import { createSupplierRepository } from "../infrastructure/suppliers-repo-factory" ;
3+ import createSupplierRepository from "../infrastructure/suppliers-repo-factory" ;
64
75async function main ( ) {
86 await yargs ( hideBin ( process . argv ) )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { DynamoDBDocumentClient } from "@aws-sdk/lib-dynamodb";
33import { pino } from "pino" ;
44import { SupplierRepository } from "@internal/datastore" ;
55
6- export function createSupplierRepository (
6+ export default function createSupplierRepository (
77 environment : string ,
88) : SupplierRepository {
99 const ddbClient = new DynamoDBClient ( { } ) ;
You can’t perform that action at this time.
0 commit comments