E
let onUpdate (context: UpdateContext) =
match context.Update with
| { Message = Some msg } ->
match msg.Text with
| Some text ->
if text.StartsWith("/start") then handleStartWithError context
elif text = "/getDiscount" then handleGetDiscount context
else ()
| None -> ()
| _ -> ()
UpdateContext -> Async<unit>
у handleStartWithError и handleGetDiscount



