This commit is contained in:
Andreas Gammelgaard Damsbo 2024-02-27 13:20:21 +01:00
commit 9e33057c06
32 changed files with 456 additions and 340 deletions

View file

@ -1,4 +1,4 @@
process_user_input <- function (x) {
process_user_input <- function(x) {
UseMethod("process_user_input", x)
}
@ -30,10 +30,8 @@ process_user_input.character <- function(x, ...) {
}
jsonlite::fromJSON(x)
}
process_user_input.response <- function(x, ...) {
process_user_input(rawToChar(x$content))
}