Adding reasons to `SmackMyBitch.cs` from ChatGpt

This commit is contained in:
Raphael Moreira 2023-10-23 16:53:30 -03:00 committed by GitHub
parent 43a0fe9e6a
commit aecb3cea0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,11 +16,7 @@ const string herNumber = "+xxx";
TwilioClient.Init(twilioAccountSid, authToken); TwilioClient.Init(twilioAccountSid, authToken);
string[] reasons = { var excuses = await new ChatGpt().GetReasonsToMyBitch();
"Working hard",
"Gotta ship this feature",
"Someone fucked the system again"
};
var randomNumber = new Random().Next(reasons.Length); var randomNumber = new Random().Next(reasons.Length);
var reason = reasons[randomNumber]; var reason = reasons[randomNumber];