AI-Studio/app/Build/Program.cs

9 lines
270 B
C#
Raw Permalink Normal View History

2025-04-14 17:29:56 +00:00
using Build.Commands;
var builder = CoconaApp.CreateBuilder();
var app = builder.Build();
app.AddCommands<CheckRidsCommand>();
app.AddCommands<UpdateMetadataCommands>();
app.AddCommands<UpdateWebAssetsCommand>();
app.AddCommands<CollectI18NKeysCommand>();
app.Run();