Skip to content

Commit

Permalink
remove hardcoded credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
yxuo committed Mar 7, 2024
1 parent e1a4188 commit ab1994c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ import { SftpModule } from './sftp/sftp.module';
imports: [
SftpModule.forRoot(
{
host: '34.123.217.7',
port: 23,
username: 'cct_devs',
password: 'EzKWSiqqchX3xdF'
host: '',
port: 0,
username: '',
password: ''
},
false,
),
Expand Down

0 comments on commit ab1994c

Please sign in to comment.