From 1b5f90551259c97ea38b67382521f6f817972e9e Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 6 May 2024 08:53:57 +0300 Subject: [PATCH] ci: temporary fix for gitly compilation --- vlib/veb/auth/request.v | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vlib/veb/auth/request.v 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 +}