This commit is contained in:
lafetz 2025-03-29 06:34:35 +03:00
parent c8b215cc43
commit ef006abd10
2 changed files with 0 additions and 22 deletions

View File

@ -1,6 +0,0 @@
package dto
var loginCustomerRes struct {
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
}

View File

@ -1,16 +0,0 @@
#!/bin/bash
dotenv() {
if [ -f .env ]; then
while IFS='=' read -r key value; do
if [[ ! -z "$key" && "$key" != \#* ]]; then
export "$key=$value"
fi
done < .env
else
echo ".env file not found."
fi
}
dotenv