16 lines
278 B
C#
16 lines
278 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Statiq.App;
|
|
using Statiq.Web;
|
|
|
|
namespace WretchedMachinesSiteGenerator;
|
|
public class Program
|
|
{
|
|
public static async Task<int> Main(string[] args) =>
|
|
await Bootstrapper
|
|
.Factory
|
|
.CreateWeb(args)
|
|
.RunAsync();
|
|
}
|
|
|