diff --git a/front/src/routes/man_pages.jsx b/front/src/routes/man_pages.jsx index f904394..40c5af0 100644 --- a/front/src/routes/man_pages.jsx +++ b/front/src/routes/man_pages.jsx @@ -1,3 +1,18 @@ +const botMoveRequestSchema = `GameUpdate { + bot_id: number; + bot_name: string; + game_id: number; + fen: string; + turn: string; + bot_turn: boolean; + last_move: string; + status: string; +}`; + +const botMoveResponseSchema = `BotMoveResponse { + attempted_message: string; +}`; + export const ManPages = () => { return (
@@ -69,7 +84,6 @@ export const ManPages = () => { In the "Previous Games" viewer, use h/l or left/right to view the previous/next move. -
  • In a game board use "f" to flip the board.
  • In the "Previous Games" viewer, use "m" to show the game's move @@ -86,6 +100,50 @@ export const ManPages = () => {
  • +
    +
    + BOTS & WEBHOOKS +
    +
    + +
    +
    ); };