summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/Storage/IStorageProvider.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-12-21 15:41:55 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-12-21 15:41:55 -0500
commit242dc718cdedf2c7a264670008b9f760eba160d9 (patch)
treea8fc18201ae4ba8b3ff9b1652c8e0eeeff890b36 /src/SMAPI.Web/Framework/Storage/IStorageProvider.cs
parent02f645900eb31648376abe21df30dd956221ad90 (diff)
downloadSMAPI-242dc718cdedf2c7a264670008b9f760eba160d9.tar.gz
SMAPI-242dc718cdedf2c7a264670008b9f760eba160d9.tar.bz2
SMAPI-242dc718cdedf2c7a264670008b9f760eba160d9.zip
switch to Azure Blob storage for saving files
Diffstat (limited to 'src/SMAPI.Web/Framework/Storage/IStorageProvider.cs')
-rw-r--r--src/SMAPI.Web/Framework/Storage/IStorageProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Framework/Storage/IStorageProvider.cs b/src/SMAPI.Web/Framework/Storage/IStorageProvider.cs
index e222a235..12a5e421 100644
--- a/src/SMAPI.Web/Framework/Storage/IStorageProvider.cs
+++ b/src/SMAPI.Web/Framework/Storage/IStorageProvider.cs
@@ -5,7 +5,7 @@ namespace StardewModdingAPI.Web.Framework.Storage
/// <summary>Provides access to raw data storage.</summary>
internal interface IStorageProvider
{
- /// <summary>Save a text file to Pastebin or Amazon S3, if available.</summary>
+ /// <summary>Save a text file to storage.</summary>
/// <param name="title">The display title, if applicable.</param>
/// <param name="content">The content to upload.</param>
/// <param name="compress">Whether to gzip the text.</param>