Program.cs 265 B

12345678910111213
  1. using NLog;
  2. namespace Wicture.DbRESTFul.Samples.MySqlService
  3. {
  4. public class Program
  5. {
  6. public static void Main(string[] args)
  7. {
  8. LogManager.ThrowConfigExceptions = true;
  9. Starter.Start<Startup>(args);
  10. }
  11. }
  12. }