mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 22:39:47 +00:00
9 lines
270 B
C#
9 lines
270 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.Run();
|