diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-21 15:41:55 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-21 15:41:55 -0500 |
commit | 242dc718cdedf2c7a264670008b9f760eba160d9 (patch) | |
tree | a8fc18201ae4ba8b3ff9b1652c8e0eeeff890b36 /src/SMAPI.Web/Startup.cs | |
parent | 02f645900eb31648376abe21df30dd956221ad90 (diff) | |
download | SMAPI-242dc718cdedf2c7a264670008b9f760eba160d9.tar.gz SMAPI-242dc718cdedf2c7a264670008b9f760eba160d9.tar.bz2 SMAPI-242dc718cdedf2c7a264670008b9f760eba160d9.zip |
switch to Azure Blob storage for saving files
Diffstat (limited to 'src/SMAPI.Web/Startup.cs')
-rw-r--r-- | src/SMAPI.Web/Startup.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/SMAPI.Web/Startup.cs b/src/SMAPI.Web/Startup.cs index 31b5e61d..07ee0c9e 100644 --- a/src/SMAPI.Web/Startup.cs +++ b/src/SMAPI.Web/Startup.cs @@ -153,9 +153,7 @@ namespace StardewModdingAPI.Web services.AddSingleton<IPastebinClient>(new PastebinClient( baseUrl: api.PastebinBaseUrl, - userAgent: userAgent, - userKey: api.PastebinUserKey, - devKey: api.PastebinDevKey + userAgent: userAgent )); } |