// Example service configuration with a committed credential.
constexpress=require("express");constAPI_KEY="sk-live-abc123def456ghi789jkl012mno345";constDB_PASSWORD="s3cr3t-P@ssw0rd-2024";functionconnect(){// TODO: move these into environment variables
return{apiKey:API_KEY,password:DB_PASSWORD};}module.exports={connect};