We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad9929a commit 73a7008Copy full SHA for 73a7008
1 file changed
Lector/Program.cs
@@ -1,4 +1,4 @@
1
-/*
+/*
2
* COPYRIGHT: See COPYING in the top level directory
3
* PROJECT: Lector
4
* FILE: Program.cs
@@ -11,12 +11,16 @@
11
12
namespace Lector
13
{
14
+ /// <summary>
15
+ /// Main entry point and basic interface for my Commands.
16
+ /// </summary>
17
internal static class Program
18
19
/// <summary>
20
/// Defines the entry point of the application.
21
/// </summary>
22
/// <param name="args">The arguments.</param>
23
+ [STAThread]
24
private static void Main(string[] args)
25
26
var weave = new Weave();
@@ -66,4 +70,4 @@ private static void RegisterApps(Weave weave)
66
70
weave.Register(module);
67
71
}
68
72
69
-}
73
+}
0 commit comments