AI-Studio/app/Build/Program.cs

11 lines
318 B
C#

using Build.Commands;
var builder = CoconaApp.CreateBuilder();
var app = builder.Build();
app.AddCommands<CheckRidsCommand>();
app.AddCommands<UpdateMetadataCommands>();
app.AddCommands<UpdateWebAssetsCommand>();
app.AddCommands<CollectI18NKeysCommand>();
app.AddCommands<AssistantPluginHashCommand>();
app.Run();