Opcode = enum Cont = 0, ## Denotes a continuation frame. Text = 1, ## Denotes a text frame. Binary = 2, ## Denotes a binary frame. Close = 8, ## Denotes a connection close. Ping = 9, ## Denotes a ping. Pong = 10 ``` Theres an enum im forced to use for a function ^ Is there a way for me to add additional values? Or force the function to use a different value Heres the proc: # nim# proc send( # ws: WebSocket, text: string, opcode = Opcode.Text # ): Future[void] {.async.} = # [more function stuff]```