AI-Studio/app/Build/Program.cs

8 lines
227 B
C#
Raw Normal View History

using Build.Commands;
var builder = CoconaApp.CreateBuilder();
2025-04-13 09:54:34 +00:00
var app = builder.Build();
app.AddCommands<CheckRidsCommand>();
app.AddCommands<UpdateMetadataCommands>();
2025-04-13 09:56:02 +00:00
app.AddCommands<UpdateWebAssetsCommand>();
2025-04-13 09:54:34 +00:00
app.Run();