We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f7a29 commit 6c1ffccCopy full SHA for 6c1ffcc
src/AdventOfCode.Commons/Configuration.cs
@@ -0,0 +1,16 @@
1
+namespace AdventOfCode.Commons;
2
+
3
+/// <summary>
4
+/// Configure the constants and values required for the application to run
5
+/// </summary>
6
+public static class Configuration
7
+{
8
+ /// <summary>
9
+ /// Your session cookie, if you want to retrieve your input from the internet
10
+ /// </summary>
11
+ /// <remarks>
12
+ /// To get your cookie, head to https://adventofcode.com/, then look into the cookies
13
+ /// the website has set and paste its value here, it be something like <c>session:"[value]"</c>
14
+ /// </remarks>
15
+ public const string? CookieValue = null;
16
+}
0 commit comments