public Conversation(Settings.Bot settings, string googleApiKey, TwitterContext twitterContext)
 {
     _settings     = settings;
     _googleApiKey = googleApiKey;
     Become(() => Listening(twitterContext));
 }
Exemple #2
0
 public Bot(Settings.Bot settings, string googleApiKey)
 {
     _settings     = settings;
     _googleApiKey = googleApiKey;
     Become(Authorizing);
 }