// aws.config.ts

import { Injectable } from '@nestjs/common';

@Injectable()
export class AwsConfig {
  accessKeyId: string;
  secretAccessKey: string;
  region: string;
  bucketName: string;
}


export const awsConfig: AwsConfig = {
  accessKeyId: 'AKIAYGPK65NCEZUKUQH5',
  secretAccessKey: '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',

  region: 'ap-south-1',
  bucketName: 'ophub-dev-bucket',
};