mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
extracted imgur credentials to another class
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2047 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
4698ee8d7d
commit
ef4b1344e5
3 changed files with 28 additions and 5 deletions
12
GreenshotImgurPlugin/ImgurCredentials.cs
Normal file
12
GreenshotImgurPlugin/ImgurCredentials.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
|
||||
namespace GreenshotImgurPlugin {
|
||||
/// <summary>
|
||||
/// This class is merely a placeholder for the file keeping the API key and secret for imgur integration.
|
||||
/// Copy this file to ImgurCredentials.private.cs and fill in valid credentials. (Or empty strings, but of course you won't be able to use the Imgur plugin then.)
|
||||
/// </summary>
|
||||
public static class ImgurCredentials {
|
||||
public static string CONSUMER_KEY = empty;
|
||||
public static string CONSUMER_SECRET = empty;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue