From 9ef417b4f6b33873e90fb1a97d967bc58cad1b09 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Thu, 21 Dec 2023 13:02:15 -0600 Subject: [PATCH] chore: add entry point --- 15/LensLibrary/Program.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/15/LensLibrary/Program.cs b/15/LensLibrary/Program.cs index 3751555..79221d8 100644 --- a/15/LensLibrary/Program.cs +++ b/15/LensLibrary/Program.cs @@ -1,2 +1,9 @@ -// See https://aka.ms/new-console-template for more information -Console.WriteLine("Hello, World!"); +namespace LensLibrary; + +public class Program +{ + public static async Task Main(string[] args) + { + return await Task.FromResult(0); + } +} \ No newline at end of file