implement most of grids api methods

This commit is contained in:
zznty
2023-01-24 18:27:32 +07:00
parent 495d299c00
commit f66489ae9b
11 changed files with 165 additions and 12 deletions

View File

@@ -65,7 +65,8 @@ public class ApiServerManager : Manager
.WithController<ChatController>()
.WithController<PluginsController>()
.WithController<PluginDownloadsController>()
.WithController<PlayersController>())
.WithController<PlayersController>()
.WithController<GridsController>())
.WithModule(new LogsModule("/api/live/logs", true))
.WithModule(chatModule);
}