diff --git a/vlib/veb/auth/request.v b/vlib/veb/auth/request.v new file mode 100644 index 0000000000..5852945eb5 --- /dev/null +++ b/vlib/veb/auth/request.v @@ -0,0 +1,9 @@ +module auth + +pub struct Request { +pub: + client_id string + client_secret string + code string + state string +}