Skip to content

Commit 6c1ffcc

Browse files
committed
Create the configuration file
1 parent 25f7a29 commit 6c1ffcc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)