application template changes

This commit is contained in:
sbwalker
2025-08-26 17:15:46 -04:00
parent ec06c1cdf1
commit 4d5168c998
65 changed files with 136 additions and 141 deletions

View File

@ -0,0 +1,12 @@
using System.Threading.Tasks;
namespace Oqtane.Application.Client
{
internal class Program
{
static async Task Main(string[] args)
{
await Oqtane.Client.Program.Main(args);
}
}
}